Skip to content

Instantly share code, notes, and snippets.

View ioribrn's full-sized avatar
🏠
Working from home

Jawad Moustadif ioribrn

🏠
Working from home
View GitHub Profile
@ioribrn
ioribrn / vagrant-cheat-sheet.md
Created April 28, 2021 20:04 — forked from wpscholar/vagrant-cheat-sheet.md
Vagrant Cheat Sheet

Typing vagrant from the command line will display a list of all available commands.

Be sure that you are in the same directory as the Vagrantfile when running these commands!

Creating a VM

  • vagrant init -- Initialize Vagrant with a Vagrantfile and ./.vagrant directory, using no specified base image. Before you can do vagrant up, you'll need to specify a base image in the Vagrantfile.
  • vagrant init <boxpath> -- Initialize Vagrant with a specific box. To find a box, go to the public Vagrant box catalog. When you find one you like, just replace it's name with boxpath. For example, vagrant init ubuntu/trusty64.

Starting a VM

  • vagrant up -- starts vagrant environment (also provisions only on the FIRST vagrant up)
@ioribrn
ioribrn / http-benchmark.md
Created August 24, 2020 11:46 — forked from denji/http-benchmark.md
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)
microphone About me
Medium - https://medium.com/@chajer.brn
LinkedIn - https://www.linkedin.com/in/jawad-moustadif/
@ioribrn
ioribrn / WAHH_Task_Checklist.md
Created August 11, 2020 00:04 — forked from amotmot/WAHH_Task_Checklist.md
The Web Application Hacker's Handbook - Task Checklist - Github-Flavored Markdown
@ioribrn
ioribrn / WAHH_Task_Checklist.md
Created August 11, 2020 00:04 — forked from jhaddix/Testing_Checklist.md
The Web Application Hacker's Handbook - Task Checklist - Github-Flavored Markdown
#!/usr/bin/env bash
###################
## notice:
## ./codeql.sh setup | set up CodeQL on the host
## ./codeql.sh analyze repertoire | clone first, create and analyze a list of repositories.
## ./codeql.sh analyze front
###################
set -e
export CODEQL_BIN=/usr/bin/codeql
export CODEQL_QUERY=codeql-query
Serial Keys:
FU512-2DG1H-M85QZ-U7Z5T-PY8ZD
CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD
GV7N2-DQZ00-4897Y-27ZNX-NV0TD
YZ718-4REEQ-08DHQ-JNYQC-ZQRD0
GZ3N0-6CX0L-H80UP-FPM59-NKAD4
YY31H-6EYEJ-480VZ-VXXZC-QF2E0
ZG51K-25FE1-H81ZP-95XGT-WV2C0
VG30H-2AX11-H88FQ-CQXGZ-M6AY4
@ioribrn
ioribrn / README.md
Created July 9, 2020 10:59 — forked from snormore/README.md
Deploying a web app to Kubernetes with SSL using Let's Encrypt via cert-manager and nginx-ingress.

Deploying a web app to Kubernetes with SSL using Let's Encrypt via cert-manager and nginx-ingress

Spin up a Kubernetes cluster

You can do this with MiniKube for development and testing, or Google Cloud's GKE for the real thing.

MiniKube

# Make sure you have MiniKube installed and it's the latest
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC
"-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="200"
height="200"
zoomAndPan="disable"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xml:space="preserve">
@ioribrn
ioribrn / Timing_attack
Created December 23, 2019 21:55
Timing_attack
#!/usr/bin/env python
import socket
import time
def getFlag():
TCP_IP= '3.19.111.121'
TCP_PORT= 1337
print "[+]- Connecting To %s:%d\n" % (TCP_IP,TCP_PORT)
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)