mirror of
https://github.com/EdOverflow/bugbounty-cheatsheet.git
synced 2024-11-22 02:53:06 +00:00
Update recon.md
This commit is contained in:
parent
0bbcf3fe16
commit
f2be899e2e
1 changed files with 6 additions and 0 deletions
|
@ -15,3 +15,9 @@ This runs [Sublist3r](https://github.com/aboul3la/Sublist3r) on a list of domain
|
|||
```
|
||||
. <(cat domains | xargs -n1 -i{} python sublist3r.py -d {} -o {}.txt)
|
||||
```
|
||||
|
||||
# [Apktool](https://ibotpeaches.github.io/Apktool/) to [LinkFinder](https://github.com/GerbenJavado/LinkFinder)
|
||||
|
||||
```
|
||||
apktool d app.apk; cd app;mkdir collection; find . -name \*.smali -exec sh -c "cp {} collection/\$(head /dev/urandom | md5 | cut -d' ' -f1).smali" \;; linkfinder -i 'collection/*.smali' -o cli
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue