Skip to content

Instantly share code, notes, and snippets.

View Aseyed's full-sized avatar
🤓

Mostafa Aseyed

🤓
View GitHub Profile
@soheilsec
soheilsec / Red Team Courses
Created February 1, 2024 17:26
Red Team Courses
requirements:
OWASP top 10
kali linux
Active Directory concepts
Windows Internals
Linux Internals
Red Team 1 ->35-45 hours
Network Fundamentals
Web Application Security
@mahmoud-eskandari
mahmoud-eskandari / README.md
Last active February 28, 2024 00:27
Install v2ray on Bridge:(Ubuntu +18 via systemd) - Upstream (Ubuntu +18/CentOS +7 via docker)

پنل x-ui

پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور

mkdir x-ui && cd x-ui
docker run -itd --network=host \
    -v $PWD/db/:/etc/x-ui/ \
 -v $PWD/cert/:/root/cert/ \
@alirezaomidi
alirezaomidi / openconnect.sh
Last active November 28, 2023 12:04
Script to connect and disconnect to/from openconnect without pain
#!/bin/bash
# This script connects the computer to a vpn server using openconnect without pain
prog_name=$(basename $0)
# CHANGE YOUR_VPN_SERVER_DOMAIN to the VPN server you know like example.com
domain=YOUR_VPN_SERVER_DOMAIN
function help {
@erm3nda
erm3nda / 6-way-to-get-current-ip.py
Last active April 22, 2020 06:40
6 ways to get the current ip using Python and it's modules
#!/usr/bin/env python
#! -*- coding: utf-8 -*-
# TODO: fix ip_firefox() and ip_socket() functions
# NOTE: Note that PhantomJS is blazing fast to being a fully javascript capable browser who makes the connection.
print ""
import sys, json, time, selenium, urllib, urllib2, urllib3, requests, socket
from selenium import webdriver