setup local repo
mkdir myrepository
cd myrepository
git init
add bitbucket remote as "origin"
# EC-Council's Certified Ethical Hacker (CEH) | |
3. http://www.mediafire.com/download/5tex1gndiis0rz3/Reconnaissance+-+Footprinting.rar -- Reconnaissance/Footprinting | |
4. http://www.mediafire.com/download/1bap7hf82clm9dy/SQL+Injection.rar -- SQL Injection | |
5. http://www.mediafire.com/download/22t74lyof149u41/Scanning+networks.rar -- Scanning Networks | |
6. http://www.mediafire.com/download/h285291nt7w8trh/Enumeration.rar -- Enumeration | |
7. http://www.mediafire.com/download/g4di658xb9stz8g/Pentesting+Web+Servers.rar -- Hacking Web Servers | |
8. http://www.mediafire.com/download/waqslt6jhk6ph1a/Pentesting+Web+Applications.rar -- Hacking Web Applications | |
9. http://www.mediafire.com/download/1cujirp51m911k8/Cryptography.rar -- Cryptography | |
10. http://www.mediafire.com/download/fzbq3zzzqspzw15/Sniffing.rar -- Sniffing | |
11. http://www.mediafire.com/download/5irzrhub4r6mva3/Session+Hijacking.rar -- Session Hijacking |
param | |
( | |
[Parameter(Mandatory=$true, HelpMessage="Enter Azure Subscription name. You need to be Subscription Admin to execute the script")] | |
[string] $subscriptionName, | |
[Parameter(Mandatory=$true, HelpMessage="Provide a password for SPN application that you would create")] | |
[string] $password, | |
[Parameter(Mandatory=$false, HelpMessage="Provide a SPN role assignment")] | |
[string] $spnRole = "owner" |
#!/bin/bash | |
# must be sudo, by the way | |
apt-key adv --keyserver pgp.mit.edu --recv-keys ED444FF07D8D0BF6 \ | |
&& echo 'http://http.kali.org/kali kali-rolling main contrib non-free' >> /etc/apt/sources.list \ | |
&& apt update | |
apt install -y acccheck ace-voip amap automater braa casefile cdpsnarf cisco-torch cookie-cadger copy-router-config dmitry dnmap dnsenum dnsmap dnsrecon dnstracer dnswalk dotdotpwn enum4linux enumiax exploitdb fierce firewalk fragroute fragrouter golismero goofile lbd maltego-teeth masscan metagoofil miranda nmap p0f parsero recon-ng smtp-user-enum snmpcheck sslcaudit sslsplit sslyze theharvester tlssled twofi urlcrazy wol-e intrace hping3 | |
apt install -y bbqsql bed cisco-auditing-tool cisco-global-exploiter cisco-ocs doona greenbone-security-assistant hexorbase jsql lynis ohrwurm openvas-cli openvas-manager openvas-scanner oscanner powerfuzzer sfuzz sidguesser siparmyknife sqlmap sqlsus tnscmd10g unix-privesc-check yersinia | |
apt install -y aircrack-ng asleap bluelog blueranger bluesn |
param( | |
$UserPrincipalName | |
) | |
try { | |
Import-Module -Name AzureAD -ErrorAction Stop | |
Import-Module -Name MSGraphIntuneManagement -ErrorAction Stop | |
sudo apt-get update | |
#Essential | |
sudo apt-get install build-essential -y | |
sudo apt install yum -y | |
sudo apt-get install curl -y | |
sudo add-apt-repository ppa:plushuang-tw/uget-stable -y | |
sudo apt install uget -y #Installing Download Manager | |
sudo apt-get install firefox -y #Firefox | |
sudo apt-get install vlc browser-plugin-vlc -y #VLC player |
# Custom Aliases | |
alias vimbash='vim ~/Desktop/programming/git/linuxAliases/.bash_aliases' # Alias for editing .bash_aliases (do not copy this directly, change the path to vim ~/.bash_aliases) | |
alias sourcebash='source ~/.bashrc' # Alias for sourcing the .bashrc file | |
# Git | |
alias gitpassmemory="git config --global credential.helper cache --timeout=3600" | |
alias gitcleanall='gita.a ; git reset --hard HEAD' | |
alias gitcleanstage='git reset HEAD *' | |
alias gitinit='git init' | |
alias gitunstage='git reset HEAD' |
#!/bin/bash | |
sudo apt update | |
sudo apt install -y \ | |
apt-file \ | |
autoconf \ | |
bison \ | |
build-essential \ | |
checkinstall \ |