Skip to content

Instantly share code, notes, and snippets.

View korallin's full-sized avatar
🐇

korallin korallin

🐇
View GitHub Profile

#Wireless Penetration Testing Cheat Sheet

##WIRELESS ANTENNA

  • Open the Monitor Mode
root@uceka:~# ifconfig wlan0mon down
root@uceka:~# iwconfig wlan0mon mode monitor
root@uceka:~# ifconfig wlan0mon up
This file has been truncated, but you can view the full file.
(window.webpackJsonp=window.webpackJsonp||[]).push([[72,6,8,18,24,70],[function(e,t,n){"use strict";e.exports=n(814)},function(e,t,n){"use strict";t.__esModule=!0;var r={API_HOST:!0,ActionTypes:!0,LoginStates:!0,RegistrationStates:!0,FormStates:!0,KeybindActions:!0,KeybindCustomActions:!0,ModuleUpdaterEventTypes:!0,RecentMentionsFilters:!0,RTCDebugSections:!0,GuildSettingsSections:!0,ChannelSettingsSections:!0,ChannelSections:!0,FriendsSections:!0,UserProfileSections:!0,SearchSections:!0,MessagePreviewSections:!0,DesktopNotificationTypes:!0,NotificationPermissionTypes:!0,TTSNotificationTypes:!0,InputModes:!0,ChannelTypes:!0,ContextMenuTypes:!0,NoticeTypes:!0,InviteStates:!0,NativeAppStates:!0,CreateGuildModalScreens:!0,GuildFeatures:!0,SystemChannelFlags:!0,RTCConnectionStates:!0,RTCConnectionQuality:!0,ConnectionStatus:!0,RTCReceivedVideoQuality:!0,RTCVoiceExperiments:!0,ExplicitContentFilterTypes:!0,PageAnalyticsLocations:!0,MessageStates:!0,MessageTypes:!0,MessageTypesDeletable:!0,MessageFlags:!0,OverlayDi
This file has been truncated, but you can view the full file.
(window.webpackJsonp=window.webpackJsonp||[]).push([[360,5,7,9,306,312,358],[function(e,t,n){"use strict";e.exports=n(1090)},function(e,t,n){"use strict";t.__esModule=!0;var r={API_HOST:!0,ActionTypes:!0,LoginStates:!0,FormStates:!0,KeybindActions:!0,KeybindCustomActions:!0,RecentMentionsFilters:!0,RTCDebugSections:!0,GuildSettingsSections:!0,ChannelSettingsSections:!0,ChannelSections:!0,FriendsSections:!0,UserProfileSections:!0,SearchSections:!0,MessagePreviewSections:!0,DesktopNotificationTypes:!0,NotificationPermissionTypes:!0,TTSNotificationTypes:!0,InputModes:!0,ChannelTypes:!0,ContextMenuTypes:!0,NoticeTypes:!0,InviteStates:!0,NativeAppStates:!0,CreateGuildModalScreens:!0,GuildFeatures:!0,SystemChannelFlags:!0,RTCConnectionStates:!0,RTCConnectionQuality:!0,ConnectionStatus:!0,RTCReceivedVideoQuality:!0,RTCVoiceExperiments:!0,ExplicitContentFilterTypes:!0,PageAnalyticsLocations:!0,MessageStates:!0,MessageTypes:!0,MessageTypesDeletable:!0,MessageFlags:!0,OverlayDisplayNames:!0,OverlayDisplayUsers:!0,Overl
@korallin
korallin / omercy.py
Created April 12, 2022 07:24 — forked from Krazybug/omercy.py
O'Reilly free ebooks downloader
'''
O'Meirrcy !!!! Download free ebooks from O'Reilly
Usage:
> git clone https://gist.github.com/Krazybug/1ae50814d25b0a1d862dfdf7161ee503
> mv 1ae50814d25b0a1d862dfdf7161ee503 omercy
> cd omercy
> pip install requests
> pip install bs4
> python omercy.py
@korallin
korallin / GoogleHackMasterList.txt
Created April 4, 2022 04:04 — forked from rmusser01/GoogleHackMasterList.txt
The definitive super list for "Google Hacking".
admin account info" filetype:log
!Host=*.* intext:enc_UserPassword=* ext:pcf
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"AutoCreate=TRUE password=*"
"http://*:*@www” domainname
"index of/" "ws_ftp.ini" "parent directory"
"liveice configuration file" ext:cfg -site:sourceforge.net
"parent directory" +proftpdpasswd
Duclassified" -site:duware.com "DUware All Rights reserved"
duclassmate" -site:duware.com

Oh my zsh.

Install with curl

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Enabling Plugins (zsh-autosuggestions & zsh-syntax-highlighting)

  • Download zsh-autosuggestions by
#!/usr/bin/env python
# Syntax: duplicates.py DIRECTORY DIRECTORY DIRECTORY ...
import os
import sys
import glob
import argparse
import pprint
@korallin
korallin / uberspace-create-account.py
Created January 18, 2022 15:24 — forked from ezzra/uberspace-create-account.py
uberspace create account via command line
import requests
import re
from bs4 import BeautifulSoup
import time
import sys
import os
account_name = sys.argv[1]
session = requests.Session()
@korallin
korallin / gh-multiuser-wrapper
Created January 18, 2022 15:20 — forked from ezzra/gh-multiuser-wrapper
gh cli wrapper with multiple users depending on repo
#!/bin/bash
# This wrapper will enable multi user support for github cli "gh".
# You need to link your "gh" command against this script and it will
# call the original command after changing the config credentials to the
# specific user
gh_user=$(git config gh.github.com.user)
# print infomessage
if [ -z "$gh_user" ]; then
@korallin
korallin / gist:3f3471bc00e920d340095bea5399d400
Created January 10, 2022 23:24 — forked from alfredopalhares/gist:d475257c84410c7fcca6
Restoring a PDF file from chrome cache

So I was trying to do my duties as a good civilian by paying taxes of stuff you already own.

In this particular case it meant going to the website and try and generate a PDF document that would allow me to pay for said stuff. After 2 unsuccessful attempts to generate the PDF (got greeted by 500s), I finally got the PDF open on chromium (using the PDF preview) and trying to save, the browser crashed..

I then quickly reboot chromium and tried to generate the PDF again, only to find out that I can't, the website only allows you to generate the document and download once, this is a critical document used as prof and means to pay your taxes. It doesn't really make much sense that you only can download it once, but such is the way of life.

I've been suffering from this bug for quite a while, but it never affected me in this way.

The file wasn't on ~/Downloads, so I've tried browsing chrome://cache and after a while I found the PDF HTTP request, w