Skip to content

Instantly share code, notes, and snippets.

View Leyart's full-sized avatar
🐛
P̷r̴o̴b̶l̶e̸m̷ ̴o̵f̴f̸i̴c̸e̶r̸?̴

Leyart Leyart

🐛
P̷r̴o̴b̶l̶e̸m̷ ̴o̵f̴f̸i̴c̸e̶r̸?̴
View GitHub Profile
@jhaddix
jhaddix / content_discovery_all.txt
Created May 26, 2018 11:51
a masterlist of content discovery URLs and files (used most commonly with gobuster)
This file has been truncated, but you can view the full file.
`
~/
~
ים
___
__
_
---
@Leyart
Leyart / gist:d5c7513cae07a7225d2ed898f9f7cde4
Last active August 15, 2017 21:01
Useful Commands for Virtual Machines creation
###INSTALL JAVA EASILY
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
###Fixing locales problems
sudo nano /etc/default/locale
LC_ALL="en_GB.UTF-8"
sudo dpkg-reconfigure console-setup
@amatus
amatus / cloud-at-cost.sh
Last active March 19, 2021 14:43
This script configures a cloud@cost debian install
#!/bin/sh -e
export DEBIAN_FRONTEND=noninteractive
export APT_LISTCHANGES_FRONTEND=none
mkdir -p /root/.ssh
echo ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHHuFvsgkjQBRsWgDCgI9b0rPVNbDHmTXg8+0gy3kUVb > /root/.ssh/authorized_keys
passwd -l root
deluser --remove-home user
cat > /etc/rc.local << EOF
#!/bin/sh