Python 2.7 バイトコードを使い倒したことがありますか? unfuck
ましょう。
unfuck は、難読化された Python 2.7 バイトコードを難読化解除するためのユーティリティおよびライブラリです。これは本質的に、テイント追跡を備えた Python VM の再実装です。 unfuck でできることのいくつかは次のとおりです。
#1 と #2 は、Python デコンパイラーが元の Python ソース コードを再構築しようとするときにつまずく 2 つの最大の項目です。
unfuck は基本的にバイトコードを次のようにします。
または、ここから次のようになります。
はい、これらは実際の例です。
unfuck は、ライブラリまたはコマンドライン ユーティリティとして使用できます。
unfuck 0.2.0
USAGE:
unfuck [FLAGS] [OPTIONS] <input-obfuscated-file> <output-path> [graphs-dir] [SUBCOMMAND]
FLAGS:
--dry Dry run only -- do not write any files
-g Enable outputting code graphs to dot format
-h, --help Prints help information
-q Disable all logging
-V, --version Prints version information
-v Enable verbose logging
OPTIONS:
--decompiler <decompiler> Your favorite Python 2.7 bytecode decompiler. This program assumes the decompiler's
first positional argument is the file to decompile, and it prints the decompiled
output to stdout [env: UNFUCK_DECOMPILER=] [default: uncompyle6]
ARGS:
<input-obfuscated-file> Input obfuscated file
<output-path> Output file name or directory name. If this path is a directory, a file will be
created with the same name as the input. When the `strings-only` subcommand is
applied, this will be where the output strings file is placed
<graphs-dir> An optional directory for graphs to be written to [default: .]
SUBCOMMANDS:
help Prints this message or the help of the given subcommand(s)
strings-only
単一のファイルを解凍するには:
# deobfuscated.pyc can also be a directory
unfuck obfuscated.pyc deobfuscated.pyc
追加のフラグを指定して文字列をファイルにダンプしたり、graphviz で表示できるdot
グラフをダンプしたりすることもできます。
# -g is for printing graphs
unfuck -g obfuscated.pyc deobfuscated.pyc
# use the strings-only subcommand for dumping just dumping strings -- no deobfuscation is performed
unfuck deobfuscated.pyc ./strings.csv strings-only
unfuck では、システムのPATH
に Python 2.7 が必要です。それが存在することを確認したら、 cargo build
実行できるはずです。何らかの理由で正しいインタープリターが見つからない場合は、 PYTHON_SYS_EXECUTABLE
環境変数を Python 2.7 インタープリターのパスに設定してみてください。
cargo install --force unfuck
注: unfuck は元々ライブラリの使用を念頭に置いて設計されていないため、独自のマルチスレッド プラットフォーム (この場合は Rayon) を導入しています。
使用方法は非常に簡単です。
use std :: convert :: TryInto ;
use std :: fs :: File ;
let mut pyc_contents = vec ! [ ] ;
let pyc_file = File :: open ( "obfuscated.pyc" ) ? ;
pyc_file . read_to_end ( & mut pyc_contents ) ? ;
// magic/moddate are specific to the PYC header and are required to be
// a valid PYC file
let magic = u32 :: from_le_bytes ( pyc_contents [ 0 .. 4 ] . try_into ( ) . unwrap ( ) ) ;
let moddate = u32 :: from_le_bytes ( pyc_contents [ 4 .. 8 ] . try_into ( ) . unwrap ( ) ) ;
let pyc_contents = & pyc_contents [ 8 .. ] ;
// Use a standard Python 2.7 opcode table
let deobfuscator = unfuck :: Deobfuscator :: < pydis :: opcode :: py27 :: Standard > :: new ( pyc_contents ) ;
let deobfuscator = if enable_graphs {
deobfuscator . enable_graphs ( )
} else {
deobfuscator
} ;
let deobfuscated_code = deobfuscator . deobfuscate ( ) ? ;
let mut deobfuscated_file = File :: create ( "deobfuscated.pyc" ) ? ;
deobfuscated_file . write_all ( & magic . to_le_bytes ( ) [ .. ] ) ? ;
deobfuscated_file . write_all ( & moddate . to_le_bytes ( ) [ .. ] ) ? ;
deobfuscated_file . write_all ( deobfuscated_code . data . as_slice ( ) ) ? ;
gabe_k、yrp、lpcvoid、WD ディスクの人々、squif、ian、pie doom、saruhan