Skip to content

Instantly share code, notes, and snippets.

View omrzgit's full-sized avatar
💭
afk

Mohammed Omer omrzgit

💭
afk
View GitHub Profile
@CybersamuraiDK
CybersamuraiDK / wifi-passwords.ps1
Last active January 16, 2026 19:33 — forked from willjobs/wifi-passwords.ps1
PowerShell script to show all wifi passwords saved in Windows
(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); ($details=netsh wlan show profile name="$name" key=clear) -and ($pass=($details | Select-String "Key Content\W+\:(.+)$").Matches.Groups[1].Value.Trim() -or "N/A"); [PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}} | Format-Table -AutoSize
@pseudosavant
pseudosavant / wifi-backup.bat
Created April 30, 2020 21:59
Batch files for backing up and restoring Windows wifi networks
@ECHO OFF
REM This will export all wifi profiles to the current folder. Each profile has its own XML file.
netsh wlan export profile key=clear
@antony-jr
antony-jr / reddit.py
Created December 6, 2017 18:34
Simple reddit brute force hack!
#!/usr/bin/env python3
import requests
import sys,os
import time
username = "YOUR_USERNAME"
password_list = "PASSWORD_LIST"
login_try = {
"op" : "login",
@LoranKloeze
LoranKloeze / scroll_instagram.js
Created May 31, 2017 20:13
Automatic scroll of Instagram page, stop scrolling by hand...
/*
Tired of scrolling to one of the last photos on the page on Instagram? Let your
browser do the scrolling for you!
31-05-2017
(c) 2017 - Loran Kloeze - loran@ralon.nl
Usage
- Go to https://www.instagram.com/instagram_handle/ (change instagram_handle in i.e. taylorswift)
- Open up the console (F12) (Firefox users: type 'allow pasting' if you haven't done so yet)
- Select the contents of this complete file and copy/paste it to the console and hit enter
@dolmen
dolmen / export-wifi-profiles.cmd
Created March 10, 2011 17:54
Export all Windows Wifi profiles (SSID, password) in XML
:: Run with full administrator rights
netsh wlan export profile folder=. key=clear