InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Follow publication

Understanding Python disassembly with ChatGPT

Hello, I am morimolymoly!

Today, I am going to introduce how to treat disassembly code of Python with ChatGPT!

PyInstaller

You can create single application from Python sources with PyInstaller.

Simple code
executed result

This simple code is going to be a EXE file.

PyInstaller

EXE out from Pyinstaller behaves same as script one!

Executed result

pyinstxtractor

You can extract pyc(Python compiled file) with pyinstxtractor

Executed result
Extracted one

Extracted files are here.

Most interesting one is main.pyc.

HEX

Hex editor reveals this is not human readable file.

We need decompiler or disassembler.

pycdc

pycdc has decompiler and disassembler both!

However, decompiler sometimes emits garbage code.

Decompilation failure

Some CTFs has challenge of PyInstaller and sometimes it was made by new version of Python and pycdc does not work.

We have to look at disassembly code!

disassembly code

Here is a disassembly code!

This is simple script so easy to understand but sometimes you encounter complex script, you need another power./

ChatGPT

Prompt is “Tell me about this python decompilation”

Result is here!

Finally, ChatGPT decompiled this disaseembly code!

Decompiled code

Another prompt “What is decompiled code for this main.pyc?

Conclusion

Feeding disassembly code of Python to ChatGPT is great technique for CTFers, Malware Analysts!

PyInstaller is really messy sometimes but disassembly is 90% works!

Let’s try!

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Written by morimolymoly

I am a Security Researcher. Feel free to reach me! Webpage: https://morimolymoly.com/

No responses yet

Write a response