TGViewer
Channel Public Channel
Orca Cyber Weapons

Orca Cyber Weapons

@orcacyberweapons

Orca Cyber Weapons: Security Research World

~ "Content for educational purposes."

check our community if you are interesting about Security Researching
https://t.me/VulnerabilityResearchers

- кибербезопасность

admin: @x86byte
Subscribers
1.31K
Photos
166
Videos
23
Links
2.7K
Recent Posts 16 shown
Post #3872 259
Orca Cyber Weapons Some bugs found via binary instrumentation and fuzzing by aftermathlabs ~"Using BLARE2 for binary instrumentation to guide fuzzing via coverage. Seems to work well, two discord/chromium crasher media files in 30min~ We can instrument arbitrary PE files…
Static Devirtualization of Tencent VM by aftermathlabs

@OrcaCyberWeapons
aftermathlabs.net Static Devirtualization of Tencent VM Over the course of several months we have noticed an increased interest in Tencent VM obfuscation. We have had complete static devirtualization of this VM obfuscation for quite some time now and have noticed others have achieved similar deobfuscation results.
Post #3871 278
Post #3866 1.13K
Binary Hardening just put out cfgrip v1.0.0 - https://github.com/BinaryHardening/cfgrip

It loads PE and ELF binaries (32 and 64-bit), disassembles everything with Capstone, traces through indirect calls via GOT lookups, jump tables, and backward register tracking, figures out function boundaries from entry points, exports, prolog signatures, exception tables and data section pointers. Outputs the whole control flow graph as JSON with three modes: full graph, entry-point reachable only, and a cleaned version with jump threading, dead block removal, stack deltas and cross-references

@OrcaCyberWeapons
  • 🔥 6
Post #3865 1.12K
A dive into the PE file format

https://0xrick.github.io/win-internals/pe1/
https://0xrick.github.io/win-internals/pe2/
https://0xrick.github.io/win-internals/pe3/
https://0xrick.github.io/win-internals/pe4/
https://0xrick.github.io/win-internals/pe5/
https://0xrick.github.io/win-internals/pe6/
[Mastering PE Structure for Malware Analysis: A Layman’s Guide](https://tech-zealots.com/malware-analysis/pe-portable-executable-structure-malware-analysis-part-2/)
[Peering Inside the PE: A Tour of the Win32 Portable Executable File Format](https://coffi.readthedocs.io/en/latest/peering_inside_pe.pdf)
https://0xrick.github.io/win-internals/pe8/

packages:
- c++ : https://lief.re/doc/stable/formats/pe/cpp.html
- rust : https://docs.rs/pe-parser/latest/pe_parser/
- python : https://pypi.org/project/pe-parser/


questions? :
- [What does "e_lfanew" mean in the DOS header for the PE format?](https://stackoverflow.com/questions/47711282/what-does-e-lfanew-mean-in-the-dos-header-for-the-pe-format)
- [Disassemble Windows PE .data section (using python)](https://stackoverflow.com/questions/58775954/disassemble-windows-pe-data-section)
- [Loading a 64-bit Windows PE file from memory](https://stackoverflow.com/questions/68988499/loading-a-64-bit-windows-pe-file-from-memory)


@OrcaCyberWeapons
0xRick's Blog A dive into the PE file format - Introduction A dive into the PE file format - Introduction What is this ? This is going to be a series of blog posts covering PE files in depth, it’s going to include a range of different topics, mainly the structure of PE files on disk and the way PE files get mapped…
  • 🔥 7
  • 👍 3
Post #3864 2.39K
We’re building a small community around binary security research, focused on things like:

- Reverse Engineering
- Binary Obfuscation / Deobfuscation
- Exploit Development
- Compiler / interpreters...
- Malware Analysis
- Binary Hardening research

we also work on open source tools and experiments here:
GitHub → BinaryHardening GitHub
Discord → BinaryHardening Discord

If low level stuff and weird binaries are ur thing, come join us
Always happy to meet more RE people
  • ❤ 7
Post #3863 2.1K
Post-Build PE Obfuscation

Obfusk8 includes a post-build script to further harden the compiled binary by removing forensic artifacts.

* Script Location: `Obfusk8/Obfusk8/SCRIPTS/obfuscate_pe.ps1 at main · x86byte/Obfusk8`
* What it does:
1. Strips the Rich Header — removes the MSVC build-environment fingerprint that reveals compiler version and toolchain details.
2. Spoofs the TimeDateStamp — replaces the PE header timestamp with a fixed value to obscure build time.
3. Clears the Debug Directory — wipes debug directory entries that could leak PDB paths or build metadata.
* Usage:
Run as a post-build step after compiling:
powershell PowerShell -NoProfile -ExecutionPolicy Bypass -File Obfusk8/SCRIPTS/obfuscate_pe.ps1 -Path "path\to\Obfusk8.exe"

The script modifies the binary in-place. No backup is created.


@OrcaCyberWeapons
GitHub GitHub - x86byte/Obfusk8: Obfusk8: lightweight Obfuscation library based on C++17 / Header Only for windows binaries Obfusk8: lightweight Obfuscation library based on C++17 / Header Only for windows binaries - x86byte/Obfusk8
  • 🔥 3
  • ❤ 2
Post #3862 731
Post #3861 920
https://prime.platacard.mx/file-service/static/


That's the Banco Plata S3 bucket we dumped earlier (platform-file-service-manager-prod-public in us-west-2). It serves financial documents: quarterly risk reports, signed Docusign contracts, Fitch/Moody's credit ratings, loan contracts, investment agreements, privacy policies — 849 files (156.4 MB). Authored by jorge.delacabada and Carlos Gonzalez.


@OrcaCyberWeapons
  • ❤ 2
Post #3859 865
sbox - delimiter-less string obfuscation powered by compile-time AES

Plaintext literals are a signature. Standard string serialization using delimiters is easy to trace and trivial to reverse. I wrote sbox to handle both single-string and multi-string encryption at compile-time, ensuring that sensitive source data is never exposed in the constant pool.

The project ports the AES8 core from Obfusk8 to the NeetCode "Encode and Decode Strings" challenge.

The implementation passed NeetCode in 7ms.

- Static Stealth: Shreds both atomic literals and string arrays at compile-time. The strings utility returns high-entropy noise instead of rodata artifacts.
- Delimiter-less: Fixed-width headers and AES-128 blocks remove the need for predictable separators.
- Binary Safe: Handles raw payloads and null bytes without the overhead of split-logic.

Making static analysis irrelevant for a standard coding challenge.


sbox repo : https://github.com/x86byte/sbox
  • ❤ 2
  • 👍 1
Post #3858 1.22K
Post #3854 1.12K
ent8 Bin2bin Obfuscator answers about the @PELock question "but the question is - can it obfuscate ntoskrnl.exe"
  • ❤ 3
  • 🔥 2
  • 👏 1
Older posts →

About this channel

How can I read @orcacyberweapons without a Telegram account?
TGViewer shows the public web preview Telegram publishes for Orca Cyber Weapons: recent posts, photos, videos and the subscriber count, with no app, login or account.
How many subscribers does Orca Cyber Weapons have?
Orca Cyber Weapons (@orcacyberweapons) has 1.31K subscribers on Telegram, refreshed roughly every 30 minutes.
Does Orca Cyber Weapons know I viewed it here?
No. Public channel previews carry no viewer identity, and TGViewer has no accounts or tracking of what you look up.
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →