[Help] Finding Codes in swf Pcode-Exe (Notepad ++)
Finding Codes in swf Pcode-Exe (Notepad ++)
Finding Codes in swf Pcode-Exe (Notepad ++) Posted on: 08/13/2017 1:05pm
Quote Post



When I want to find an AOB code, I export the whole script in pcode and I look for aob with notepad ++, as you see in the image I look for a decimal group of 3 to 4 decimal places, I want to know if anyone knows in a way that I can do the full aob search, with more than 4 decimal numbers.

I want to find the AOBS, complete,


example:

Search in notepad ++ 46 89 76 55 88 66 24 01 27

Some way to ignore the texts, and get the AOBS, even eleas not being in a single line.

A1 to A0 architect.

Hit control F to bring up FIND
Check "Regular Expression" under Search Mode, but ignore the Newline box.

Enter this: 
 
;[ ].+
 
And click "Search for all in current document"

That should grab all the lines which start with ; and a space, and grab the rest of the numbers and digits. It will grab other stuff like "end ; method" if that exzists, but that's way easier to clean up.

Now look at your search results. Click on them once, CTRL-A to select them all, CTRL-C to copy them, and paste it into a new window.

Now you've got the hex with a bunch of Line ?: ; all over.

Get rid of them with Search&Replace.

Hit CTRL-H
Find this: 

Line .+;  
 
Replace with - nothing.

Poof, mostly hex with a tiny bit of stuff to clean up.

Cool Notepad++ tip, you can hit Alt-Shift and click&drag your mouse to select columns. This can make things easier on some situations.
 




atdt *67
Jarly Publicado em: 13/08/2017 9:51 am

Controle de batida F para exibir ENCONTRAR
Verifique "Expressão regular" no Modo de pesquisa, mas ignore a caixa Newline.

Digite isso 
 
:; []. +
 
E clique em "Procurar tudo no documento atual".

Isso deve pegar todas as linhas que começam; E um espaço, e pegue o resto dos números e dígitos. Ele vai pegar outras coisas como "fim, método", se isso exzys, mas isso é muito mais fácil de limpar.

Agora, veja seus resultados de pesquisa. Clique neles uma vez, CTRL-A para selecioná-los todos, CTRL-C para copiá-los e colá-lo em uma nova janela.

Agora você tem o hex com um monte de Line?:; por toda parte.

Livrar-se deles com Pesquisa e substituição.

Pressione CTRL-H
Encontre isso: 

Linha. +;  
 
Substitua com - nada.

Poof, principalmente hexadecimal com um pouco de coisas para limpar.

Cool Notepad ++ tip, você pode pressionar Alt-Shift e clique e arraste o mouse para selecionar colunas. Isso pode facilitar as coisas em algumas situações.
 


Thanks jarly, I managed to export everything in exe, using Jpex, then just break the lines and you will get the location of the codes in swf, be it a small or big aobs,