Skip to content

Instantly share code, notes, and snippets.

View shide1989's full-sized avatar

Sebastien Hx. shide1989

View GitHub Profile
@shide1989
shide1989 / parrot_kali_install.sh
Created May 1, 2023 15:42 — forked from ACK-J/parrot_kali_install.sh
OffSec Tools Install
#!/bin/bash
# System Updates
sudo apt-get update -y
sudo apt-get full-upgrade --fix-missing -y
sudo apt-get autoremove -y
#sudo parrot-upgrade
# Alias to Fix Virtual Box issues
# alias FixVM="killall /usr/bin/VBoxClient 2> /dev/null; /usr/bin/VBoxClient --clipboard && /usr/bin/VBoxClient --seamless && /usr/bin/VBoxClient --vmsvga && /usr/bin/VBoxClient --draganddrop && /usr/bin/VBoxClient --checkhostversion"
@shide1989
shide1989 / aws-ec2-redis-cli.md
Last active April 14, 2020 13:50 — forked from paladini/aws-ec2-redis-cli.md
AWS redis-cli without redis server on AWS EC2

Setup redis-cli without the whole Redis Server on AWS EC2

This short setup will show you how to install redis-clion AWS EC2 without having to install the whole Redis Server.

On your EC2 instance run the following commands:

sudo yum install gcc

This may return an "already installed" message, but that's OK. After that, just run:

@shide1989
shide1989 / cloudfront_create_invalidation_policy.json
Created July 31, 2019 10:11 — forked from chusiang/cloudfront_create_invalidation_policy.json
AWS IAM policy of CloudFront Create Invalidation
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::MyBucketName"
},
{
"Action": [
@shide1989
shide1989 / Aircrack Commands
Created June 16, 2018 15:22 — forked from victorreyesh/Aircrack Commands
Cracking WPA2 / WEP Wifi / Aircrack 10 seconds guide. For Mac OSX
//Install Macports.
//Install aircrack-ng:
sudo port install aircrack-ng
//Install the latest Xcode, with the Command Line Tools.
//Create the following symlink:
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport
//Figure out which channel you need to sniff:
sudo airport -s
sudo airport en1 sniff [CHANNEL]