• XSS.stack #1 – первый литературный журнал от юзеров форума

Мануал/Книга [TUTORIAL] Sort LOGS in URL:LOGIN:PASS & Make Combolist from it

grepmoj

HDD-drive
Забанен
Регистрация
07.09.2024
Сообщения
40
Реакции
51
Пожалуйста, обратите внимание, что пользователь заблокирован
Hello guys today I want to share with you a simple and effective method for sorting logs, you don't need any cracked software or money.

Requirements:
- Logs from a cloud, for example today I will be using SATANICLOUD logs from private channel.
- Ripgrep
- Files editor

Lets start:

- For finding logs is easy, you can use forums like this and many other resources.
- Ripgrep is a powerful command-line tool that you will need for sorting your data in a efficient and fast way, to download it you can use these commands:
Linux:
sudo apt-get install ripgrep
Windows: is requested a unix based CLI like Git Bash, after installed you will need to install Choco here: https://docs.chocolatey.org/en-us/choco/setup/
Now you can install Ripgrep on Windows using Choco:
choco install ripgrep
Run "rg --version "to see if it actually worked.
- Files editor, there are a lot online, EmEditor for example.

Steps:
- Download as many archived logs you want from the resources you choose / found.
- Extract them all in your preferred path for example / FullLogs
- Use Ripgrep for sorting the data extracted in format: U; L; P
The command you will need to use is this the following:
rg -oUNI "URL: \ s (.*?) [| \ r] \ nUsername: \ s (.*?) [| \ r] \ nPassword: \ s (.*?) [| \ r] \ n" -r '$ 1: $ 2: $ 3 '− glob-case-insensitive -g "Passwords.txt" > RESULT.txt
This command will check for all "Passwords.txt" files contained in the folder where there are the extracted logs, search for the entries and write them in format ULP to file RESULT.txt
The command uses "Passwords.txt" because its the most common output from stealers nowadays, anyway you can look through logs and see if the name is different, most used are these below aswell:
  1. "All passwords.txt"
  2. "AllPasswords_list.txt"
  3. "_AllPasswords_list.txt"
Once the sorting process is done expect some duplicates, so run this command to successfully dedupe the result:
sort -u RESULT.txt > DEDU.txt
My result below:
I started with:
  • 1000 LOGS - SATANIC PRIVATE.zip
  • 1100 LOGS - SATANIC PRIVATE.zip
  • 1100 LOGS - SATANIC PRIVATE (2) .zip
  • 1400 LOGS - SATANIC PRIVATE.zip
I finished with:
LINES: Original: 302 015 \ No duplicates: 208 515
How to make combolist? Very simple, for targeted you can use grep or others to search for lines containing specified URL, for example: "damagelab.xyz"
You use the same mechanism as above to print the target lines in a new file for example: damagelab_target_lines.txt
Funny part comes now since is very easy, open i.e EmEditor, remove all "https://" and / or" http://", remove android lines and urls with ports aswell because they could mess the file.

Now we can use "cut" to remove the content in the first ':'
cut -d ':' -f2.3 damagelab_target_lines.txt
Result:
aumatinaomondi@gmail.com:tina@2024
milimanishg23@gail.com:ganjala2023
722114532:2568
ndugumwanakaka@gmail.com:2568mike
A011078602I:thebeast55
Since they are stealer logs' lines, is very high the amount of lines with duplicates because of credentials reuse, so run again "sort -u"
For non targeted combolist you do the same without parsing the wanted lines.
My result for combolist non targeted:
146 655 unique
If you want to keep only lines in format email: pass, use this grep / ripgrep with regex to keep only lines with email.
Result:
vivienapsel@gmx.de:Ladykracher2014
vophuhung35345@gmail.com:12abcd34
gvidasrankaus@gmail.com:jify8GX8gpd7suH
bbcsissy666@gmail.com:dlxFG5X4pp
dangi0435@gmail.com:Sandeep@1234
ancuta_antonia@yahoo.com:Ankutza06@199
mafnan500@gmail.com:F-yRCdFV!n9Rhc *
Want to check how many unique emails there are in the email: pass? run this:
grep -oE '\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b 'file.txt | sort -u | wc -l

Would be great to hear your feedback below this thread, hope it helped :3
 
Последнее редактирование:


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх