Skip to content

Instantly share code, notes, and snippets.

@chase2981
Last active February 12, 2024 23:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chase2981/25a477ec1ea3c00804b52264e2c5b886 to your computer and use it in GitHub Desktop.
Save chase2981/25a477ec1ea3c00804b52264e2c5b886 to your computer and use it in GitHub Desktop.
commands

Here are some useful commands

https://support.yubico.com/hc/en-us/articles/360013708900-Using-Your-U2F-YubiKey-with-Linux

sudo apt install libu2f-udev

To set up your Linux system for U2F:

Verify that libu2f-udev is installed on your system.
On Debian and its derivatives (Ubuntu, Linux Mint, etc.), check whether libu2f-udev is installed by running dpkg -s libu2f-udev. Install (if not already installed) using sudo apt install libu2f-udev.
If you have a YubiKey NEO or YubiKey NEO-n ensure you have unlocked the U2F mode by following the instructions in the Enabling or Disabling Interfaces article.
Go to https://github.com/Yubico/libu2f-host/blob/master/70-u2f.rules and download or create a copy of the file named 70-u2f.rules into the Linux directory: /etc/udev/rules.d/. If this file is already there, ensure that the content looks like the one provided on github.com/Yubico (link above). 
Note: If your version of UDEV is lower than 188, use the rules at https://github.com/Yubico/libu2f-host/blob/master/70-old-u2f.rules instead. If you do not known your udev version, you can check by running sudo udevadm --version in Terminal.
Save your file, and then reboot your system.
For services accessed via a web browser, ensure that you are running Google Chrome version 38 or later. Starting with Chrome version 39, you will be able to use the YubiKey NEO or YubiKey NEO-n in U2F+HID mode.

https://support.yubico.com/hc/en-us/articles/360016649099-Ubuntu-Linux-Login-Guide-U2F

https://support.yubico.com/hc/en-us/articles/360016649039-Installing-Yubico-Software-on-Linux

https://support.yubico.com/hc/en-us/articles/360013708900-Using-Your-U2F-YubiKey-with-Linux

Yubico/yubikey-manager-qt#197

log show --predicate '(eventMessage CONTAINS "Authentication failed")' --style syslog --last 1d

https://serverfault.com/questions/131942/how-do-i-add-a-group-in-mac-os-x-10-6

dscl . list /Groups PrimaryGroupID | tr -s ' ' | sort -n -t ' ' -k2,2

sudo dscl . -create /groups/dba
sudo dscl . -append /groups/dba gid 4200
sudo dscl . -append /groups/dba passwd "*"
sudo dscl . create /groups/dba GroupMembership chase
sudo dscl . append /groups/dba GroupMembership chasegibbons
sudo chown -R :dba /usr/local/

// list
dscacheutil -q group -a name admin

sudo dseditgroup -o edit -u someuser -p -d someuser -t user staff

dscl . -delete /Groups/dba GroupMembers chasegibbons

Add user "robertlie" to group "_www". Type: sudo dseditgroup -o edit -a robertlie -t user _www

To list all members of a group "_www". Type: dscacheutil -q group -a name _www

To remove a user "robertlie" from a group "_www". Type: sudo dseditgroup -o edit -d robertlie -t user _www

https://osxdaily.com/2020/12/14/how-create-macos-big-sur-iso/

Create disk image on mac

hdiutil create -o /tmp/MacBigSur -size 12500m -volname MacBigSur -layout SPUD -fs HFS+J

hdiutil attach /tmp/MacBigSur.dmg -noverify -mountpoint /Volumes/MacBigSur

sudo /Applications/Install\ macOS\ Big\ Sur/Contents/Resources/createinstallmedia --volume /Volumes/MacBigSur --nointeraction

hdiutil detach /Volumes/MacBigSur/

hdiutil convert /tmp/MacBigSur.dmg -format UDTO -o ~/Desktop/MacBigSur.cdr

mv ~/Desktop/MacBigSur.cdr ~/Desktop/BigSur.iso

https://support.apple.com/en-us/HT201372

keyboard repeat

https://karabiner-elements.pqrs.org/docs/help/how-to/key-repeat/

defaults write -g InitialKeyRepeat -int 35 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 2 # normal minimum is 2 (30 ms)

defaults write com.apple.finder AppleShowAllFiles -bool true
killall Finder -9

defaults write NSGlobalDomain AppleShowAllExtensions -bool true

# Disable automatic termination of inactive apps
defaults write NSGlobalDomain NSDisableAutomaticTermination -bool true


# Reveal IP address, hostname, OS version, etc. when clicking the clock
# in the login window
sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName

defaults write com.apple.Terminal "Default Window Settings" -string "Pro"
defaults write com.apple.Terminal "Startup Window Settings" -string "Pro"

# Finder: allow quitting via ⌘ + Q; doing so will also hide desktop icons
defaults write com.apple.finder QuitMenuItem -bool true

# Finder: disable window animations and Get Info animations
defaults write com.apple.finder DisableAllAnimations -bool true

# Show icons for hard drives, servers, and removable media on the desktop
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowMountedServersOnDesktop -bool true
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true

# Restart automatically if the computer freezes
sudo systemsetup -setrestartfreeze on

# Never go into computer sleep mode
sudo systemsetup -setcomputersleep Off > /dev/null

hash tmutil &> /dev/null && sudo tmutil disablelocal

# Finder: allow quitting via ⌘ + Q; doing so will also hide desktop icons
defaults write com.apple.finder QuitMenuItem -bool true

# Finder: disable window animations and Get Info animations
defaults write com.apple.finder DisableAllAnimations -bool true

# Show icons for hard drives, servers, and removable media on the desktop
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowMountedServersOnDesktop -bool true
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true

# Finder: show hidden files by default
defaults write com.apple.finder AppleShowAllFiles -bool true

# Finder: show all filename extensions
defaults write NSGlobalDomain AppleShowAllExtensions -bool true

# Finder: show status bar
defaults write com.apple.finder ShowStatusBar -bool true

# Finder: show path bar
defaults write com.apple.finder ShowPathbar -bool true

# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false

# Avoid creating .DS_Store files on network volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true


fancy_echo "Automatically quit printer app once the print jobs complete"
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true

fancy_echo "Check for software updates daily, not just once per week"
defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1

fancy_echo "Check for software updates daily, not just once per week"
defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1

fancy_echo "Empty Trash securely by default"
defaults write com.apple.finder EmptyTrashSecurely -bool true

fancy_echo "Preventing Time Machine from prompting to use new hard drives as backup volume"
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true

fancy_echo "Disabling local Time Machine backups"
hash tmutil &> /dev/null && sudo tmutil disablelocal

fancy_echo "Show the main window when launching Activity Monitor"
defaults write com.apple.ActivityMonitor OpenMainWindow -bool true

fancy_echo "Visualize CPU usage in the Activity Monitor Dock icon"
defaults write com.apple.ActivityMonitor IconType -int 5

fancy_echo "Show all processes in Activity Monitor"
defaults write com.apple.ActivityMonitor ShowCategory -int 0

fancy_echo "Sort Activity Monitor results by CPU usage"
defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage"
defaults write com.apple.ActivityMonitor SortDirection -int 0

# Add additional search attributes to Finder
search_attributes=(
  kMDItemWhereFroms
  kMDItemDisplayName
  kMDItemTextContent
  kMDItemKind
  kMDItemAudioBitRate
  kMDItemLastUsedDate
  kMDItemBitsPerSample
  kMDItemPhysicalSize
  kMDItemFSName
  kMDItemDocumentContainer
  kMDItemContentCreationDate
  kMDItemURL
  kMDItemFSContentChangeDate
  "com_apple_RawQueryAttribute"
  "com_apple_SearchSystemFilesAttribute"
)
for i in "${search_attributes[@]}"
do
  if defaults read com.apple.finder SlicesRootAttributes | grep -q "$i"; then
    defaults write com.apple.finder SlicesRootAttributes -array-add "$i"
  fi
done

echo "Allowing quicklook plugins ..."
xattr -d -r com.apple.quarantine ~/Library/QuickLook
echo "Restarting the finder ..."
killall Finder

set -e

echo "Writing macOS defaults ..."
# Close any open System Preferences panes, to prevent them from overriding
# settings we’re about to change
osascript -e 'tell application "System Preferences" to quit'

# Some prefs, like Safari, need Terminal to have Full Disk Access
if ( ! ls ~/Library/Containers/com.apple.Safari 2>&1 ) | grep -q 'Operation not permitted'; then
  echo "Add Terminal.app to System Preferences -> Security -> Privacy -> Full Disk Access" 1>&2
  /usr/bin/open 'x-apple.systempreferences:com.apple.preference.security?Privacy_AllFiles'
  exit 1
fi

defaults write com.apple.dock autohide -bool true

# Don't automatically rearrange spaces in Mission Control
defaults write com.apple.dock mru-spaces -int 0

# Enable tap to click and drag on external magic trackpad
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Dragging -bool true

# Enable tap to click and drag on built-in laptop trackpad
defaults write com.apple.driver.AppleMultitouchTrackpad Clicking -bool true
defaults write com.apple.driver.AppleMultitouchTrackpad Dragging -bool true
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true
defaults write com.apple.AppleMultitouchTrackpad Dragging -bool true

# Enable tap to click on login screen
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1

# finder prefs
defaults write com.apple.finder ShowStatusBar -bool true
defaults write com.apple.finder ShowPathbar -bool true

###############################################################################
# Dock & Mission Control
###############################################################################

fancy_echo "Wipe all (default) app icons from the Dock"
# This is only really useful when setting up a new Mac, or if you don't use
# the Dock to launch apps.
defaults write com.apple.dock persistent-apps -array

fancy_echo "Setting the icon size of Dock items to 36 pixels for optimal size/screen-realestate"
defaults write com.apple.dock tilesize -int 36

fancy_echo "Speeding up Mission Control animations and grouping windows by application"
defaults write com.apple.dock expose-animation-duration -float 0.1
defaults write com.apple.dock "expose-group-by-app" -bool true

fancy_echo "Setting Dock to auto-hide and removing the auto-hiding delay"
defaults write com.apple.dock autohide -bool true
defaults write com.apple.dock autohide-delay -float 0
defaults write com.apple.dock autohide-time-modifier -float 0

fancy_echo "Enable spring loading for all Dock items"
defaults write com.apple.dock enable-spring-load-actions-on-all-items -bool true

fancy_echo "Show indicator lights for open applications in the Dock"
defaults write com.apple.dock show-process-indicators -bool true

fancy_echo "Wipe all (default) app icons from the Dock"
# This is only really useful when setting up a new Mac, or if you don't use
# the Dock to launch apps.
defaults write com.apple.dock persistent-apps -array

fancy_echo "Don't animate opening applications from the Dock"
defaults write com.apple.dock launchanim -bool false

fancy_echo "Make Dock icons of hidden applications translucent"
defaults write com.apple.dock showhidden -bool true

fancy_echo "Speed up Mission Control animations"
defaults write com.apple.dock expose-animation-duration -float 0.1

fancy_echo "Don't group windows by application in Mission Control"
fancy_echo "(i.e. use the old Expose behavior instead)"
defaults write com.apple.dock expose-group-by-app -bool false

fancy_echo "Disable Dashboard"
defaults write com.apple.dashboard mcx-disabled -bool true

fancy_echo "Don't show Dashboard as a Space"
defaults write com.apple.dock dashboard-in-overlay -bool true

fancy_echo "Don't automatically rearrange Spaces based on most recent use"
defaults write com.apple.dock mru-spaces -bool false




https://www.macxdvd.com/mac-dvd-video-converter-how-to/ffmpeg-avi-to-mp4-free.htm

ffmpeg -i infile.avi -acodec copy -vcodec copy outfile.mp4

To batch convert avi files to mp4 with FFmpeg command line, enter:

for %%a in ("*.avi") do ffmpeg -i "%%a" -c:v libx264 -preset slow -crf 20 -c:a libvo_aacenc -b:a 128k "newfiles\%%~na.mp4"
pause

To compress avi video, enter the command line below: ffmpeg -i input.avi -vcodec msmpeg4v2 -acodec copy output.avi

To adjust the output quality of free avi to mp4 conversion with ffmpeg, you can set the bit rate: e.g.: ffmpeg -i input.avi -c:v libx264 -b:v 500K -c:a copy out.mp4

To cut certain part of the video, using -t (output duration) and -ss (starting point) options: e.g.: ffmpeg -ss 00:01:30 -i input.avi -c:v copy -c:a copy -t 5 output.mp4

To resize the output mp4 for iPhone, iPad other mobiles, using -s option: e.g.: ffmpeg -i movie.avi -c:v libx264 -s:v 854x480 -c:a copy out.mp4

https://unix.stackexchange.com/a/38380 https://stackoverflow.com/a/47499841

copy video
ffmpeg -i ./second\ half/third\ half/Rec3106_19791211074029_A_1.avi -c:v copy -c:a aac -y output3.mp4

compress
ffmpeg -i ./second\ half/third\ half/Rec3106_19791211074029_A_1.avi -vcodec libx265 -crf 28 -c:a aac -y output6.mp4
nmap --script vuln 73.127.13.84/24

nmap -A 73.127.13.84/24

nmap -sS -A 73.127.13.84/24

sudo nmap -p 80 -Pn --spoof-mac 00:00:00:00 73.127.13.1-127

sudo nmap -p 33202 -A 73.127.13.84

hosts scan - don't forget to use sudo

nmap -A 10.0.0.1-255

nmap -sP 10.0.0.0/24

nmap -sn 10.0.0.0/24

sudo nmap -sU 10.0.0.0/24

nmap -vvv -p 1-1000 10.0.0.1-255

sudo nmap -vvv 10.0.0.0/24 

sudo nmap -Avvv 10.0.0.0/24 

sudo nmap -oA `date +"%Y-%m-%d"`-uniquename

nmap -p80 -PS80 -Pn --open 10.0.0.1/24 --script http-fetch --script-args 'destination=/tmp/files'
sudo nmap -sS -Pn -v -f -D 46.242.8.144,46.242.8.143,46.242.8.142 46.242.8.144/32

speed up nmap - https://www.professormesser.com/nmap/how-to-supercharge-your-nmap-scans/4/ ⭐️⭐️⭐️

https://security.stackexchange.com/questions/176980/most-efficient-way-to-scan-for-webservers

# dry run
rsync -avvWmi /Volumes/ssd /private/var/root/Snowcone/buckets/00-snowcone/nas/ssd --inplace --ignore-existing --compress-level=0 --cache --stats --progress --dry-run
# regular run (can use multiple shells)
rsync -avvWmi /Volumes/ssd /private/var/root/Snowcone/buckets/00-snowcone/nas/ssd --inplace --ignore-existing --compress-level=0 --cache --stats --progress >./rsync.out 2>./rsync.err

https://stackoverflow.com/a/46611168

ls -1 /Volumes/ssd | xargs -I {} -P 5 -n 1 rsync -avh /Volumes/ssd/{} /private/var/root/Snowcone/buckets/00-snowcone/nas/ssd
scp -r vmlinuz.old root@zoot.dev:~/linux/

ssh user@host "(cd /desired/path; tar cvzf - *)" > /path/to/backup.tar.gz
find . -name node_modules -type d -prune -exec trash {} +
	- find . -name node_modules -type d -prune -print -exec rm -rf '{}' \;
	- find . -iregex '/(.+)?\.env(.+)?/'
find . -maxdepth 5 -name node_modules -type d -prune -print -exec rm -rf '{}' \;
	- find . -mindepth 5 -maxdepth 10 -name node_modules -type d -prune -print -exec rm -rf '{}' \;
	- find . -maxdepth 5 -iregex '/(.+)?\.env(.+)?/' -type d -print -exec rm -rf '{}' \;
	- sudo mount /dev/disk/by-label/EFI /media/G-DRIVE\ USB/
sudo unmount /dev/disk/by-label/EFI /media/G-DRIVE\ USB/
	- lsblk -e7
	- udisksctl mount -b /boot/
udisksctl unmount -b /dev/sde1
	- sudo ntfsfix /dev/sdc1
	- sudo chown zoot:zoot ./Repos
	- sudo lsblk --scsi
	- sudo mount /dev/disk/by-label/G-UTILITIES /media/G-UTILITIES
	- find . -maxdepth 5 -iregex '/(.+)?\.(.+)?env(.+)?/' -type d -print -exec rm -rf '{}' \;
	- null
	- find . -maxdepth 5 -iname '*.env' -type d -print -exec rm -rf '{}' \;

references:

install yubikey manager app and pair yubikey

https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-latest-mac.pkg

yubikey required

https://github.com/macsecurity/autodeploy https://support.yubico.com/hc/en-us/articles/360016649059-Using-Your-YubiKey-as-a-Smart-Card-in-macOS https://developers.yubico.com/PIV/Guides/Smart_card-only_authentication_on_macOS.html https://support.apple.com/en-us/HT208372

ssh yubikey required

# sso
sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config_backup_`date "+%Y-%m-%d_%H:%M"`

In the sshd_config file, change "#ChallengeResponseAuthentication yes" to "ChallengeResponseAuthentication no" and change "#PasswordAuthentication yes" to "#PasswordAuthentication no.

sudo launchctl stop com.openssh.sshd
sudo launchctl start com.openssh.sshd

sudo yubikey required

sudo cp /etc/pam.d/sudo /etc/pam.d/sudo_backup_`date "+%Y-%m-%d_%H:%M"`
sudo tee /etc/pam.d/sudo > /dev/null <<EOT
# sudo: auth account password session
auth        sufficient    pam_smartcard.so
auth        required      pam_opendirectory.so
auth        required      pam_deny.so
account     required      pam_permit.so
password    required      pam_deny.so
session     required      pam_permit.so
EOT

login command yubikey required

sudo cp /etc/pam.d/login /etc/pam.d/login_backup_`date "+%Y-%m-%d_%H:%M"`
sudo tee /etc/pam.d/login > /dev/null <<EOT
# login: auth account password session
auth        sufficient    pam_smartcard.so
auth        optional      pam_krb5.so use_kcminit
auth        optional      pam_ntlm.so try_first_pass
auth        optional      pam_mount.so try_first_pass
auth        required      pam_opendirectory.so try_first_pass
auth        required      pam_deny.so
account     required      pam_nologin.so
account     required      pam_opendirectory.so
password    required      pam_opendirectory.so
session     required      pam_launchd.so
session     required      pam_uwtmp.so
session     optional      pam_mount.so
EOT

su command yubikey required

sudo cp /etc/pam.d/su /etc/pam.d/login_backup_`date "+%Y-%m-%d_%H:%M"`
sudo tee /etc/pam.d/su > /dev/null <<EOT
# su: auth account password session
auth        sufficient    pam_smartcard.so
auth        required      pam_rootok.so
auth        required      pam_group.so no_warn group=admin,wheel ruser root_only fail_safe
account     required      pam_permit.so
account     required      pam_opendirectory.so no_check_shell
password    required      pam_opendirectory.so
session     required      pam_launchd.so
EOT

configuration profile

https://github.com/macsecurity/autodeploy/blob/main/SmartCardOnlyLogin.mobileconfig

@chase2981
Copy link
Author

chase2981 commented Feb 26, 2022

hypervisor - really good for security - virtual machine manager you can install as base os on device from which you can then install different os' or vm's

https://xcp-ng.org/#easy-to-install

https://protectli.com/solutions/hypervisor/

@chase2981
Copy link
Author

chase2981 commented Feb 28, 2022

@chase2981
Copy link
Author

chase2981 commented Mar 2, 2022

Autodeploy

git submodule init
git submodule sync

echo 'export PATH=\"$HOME/Library/Python/3.8/bin:/opt/homebrew/bin:$PATH\"' >> ~/.zshrc && source ~/.zshrc
source ~/.zshrc

pip3 install virtualenv
virtualenv env
. env/bin/activate
cd code
./setup/osx

@chase2981
Copy link
Author

Other cool DDOS website:
https://cyber-yozh.com/

@chase2981
Copy link
Author

@chase2981
Copy link
Author

chase2981 commented Mar 8, 2022

@chase2981
Copy link
Author

chase2981 commented Mar 10, 2022

Anonymous Campaigns

https://1920.in/
https://mail.1920.in/
https://1920.in/api
185.193.125.164

@chase2981
Copy link
Author

@chase2981
Copy link
Author

chase2981 commented Mar 10, 2022

Traceroute to path

https://dnschecker.org/online-traceroute.php

Private Domain Supplier

https://njal.la/

@chase2981
Copy link
Author

chase2981 commented Mar 23, 2022

How to start a botnet

⭐️⭐️⭐️⭐️⭐️ https://securitytrails.com/blog/google-hacking-techniques ⭐️⭐️⭐️⭐️⭐️

intitle:"index of" .env

https://www.exploit-db.com/ghdb/4702

https://www.google.com/search?source=univ&tbm=isch&q=intitle:%22index+of%22+inurl:+%22.env%22&fir=aXU9DcCr7dJ4AM%252CGDtlM2deZot93M%252C_%253Bs99CRDknZ1yu4M%252CGDtlM2deZot93M%252C_%253B3wh--vX9HeRI6M%252CGDtlM2deZot93M%252C_%253BcZNWKxMKgcu0eM%252CGDtlM2deZot93M%252C_%253B933u-aDP_V1FFM%252CGDtlM2deZot93M%252C_%253BnHhfLs4nHB0QbM%252CGDtlM2deZot93M%252C_%253BSkDJ8M5mDdxBCM%252CGDtlM2deZot93M%252C_%253BaTR6_utWuBhBhM%252CGDtlM2deZot93M%252C_%253BeyapuvQRwHDn_M%252CGDtlM2deZot93M%252C_%253BOSTAKhKxSi2gkM%252CFeVuu8Ebwrl5_M%252C_&usg=AI4_-kQ9q7Xx9ONDjQQp8VJc1OVRRGL53g&sa=X&ved=2ahUKEwjJ0-a3i9z2AhUAEEQIHaRECRoQ7Al6BAgaEBE&biw=1680&bih=789&dpr=2#imgrc=3wh--vX9HeRI6M

filetype:env DB_PASSWORD

https://www.google.com/search?q=filetype:env+DB_PASSWORD&ei=pQQ7YvP0DfrBkPIPhsiW2AI&start=70&sa=N&filter=0&ved=2ahUKEwiz24jdkNz2AhX6IEQIHQakBSsQ8tMDegQIARBE&biw=1680&bih=789&dpr=2

intitle:"Apache2 Ubuntu Default Page: It works"

filetype:conf apache2

https://chaoss.biterg.io/app/kibana#/dashboard/Git-Areas-of-Code?_g=h@44136fa&_a=h@c3c57ba

inurl:app/kibana intext:Loading Kibana

inurl:Dashboard.jspa intext:"Atlassian Jira Project Management Software"

https://www.exploit-db.com/google-hacking-database?category=8

intitle:"phpinfo()" inurl:"phpinfo.php"

inurl:"/php/info.php" "PHP Version" ⭐️⭐️⭐️

intitle:"index of" "wpadmin-secure.htaccess"

https://www.exploit-db.com/google-hacking-database?category=8 ⭐️⭐️⭐️⭐️ (ideas)

inurl: /wp-content/uploads/ inurl:"robots.txt" "Disallow:" filetype:txt

inurl:pastebin "SHODAN_API_KEY"

intitle:"index of" "apache.log" | "apache.logs"

intitle:"index of "/key/" "key.txt"

intitle:"index of" site:gov.ru

site:drive.google.com "*.pdf"

intitle:"index of" "sysinfo"

intitle.index of API*.txt

intitle:"index of" "admin*.txt"

inurl: /wp-content/uploads/ inurl:"robots.txt" "Disallow:" filetype:txt

intitle:"index of" "wp-config.php.bak"

http://gfic.co/wp-json/wp/v2/users/

https://pastebin.com/udmnWVAk

@chase2981
Copy link
Author

@chase2981
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment