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
-- put in proxmark/client/scripts or ~/.proxmark3/luascripts | |
local utils = require('utils') | |
local getopt = require('getopt') | |
copyright = '' | |
author = 'Thorsten' | |
version = 'v0.0.1' | |
desc = | |
[[ | |
Trigger all HITAG tags |
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
. |
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/local/bin/python | |
# Author: Thorsten Bosbach 09/2018 | |
# Step through all possible modulations/configurations for ISO/IEC 15693 with CR95HF-VMD5T from STMicroelectronics discovery kit M24LR-DISCOVERY | |
# Used command: Inventory | |
# Never forget, to read after every write, else strange looking results ;-) ! | |
import hid | |
import time | |
import sys |
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
require 'ap' | |
require 'json' | |
require 'webrick' | |
# API stubbing for frontend testing: webserver method | |
# Thorsten Bosbach 03/2018 | |
if ARGV.count != 3 | |
ap "Usage: ruby webserver.rb port request-path file" | |
# ruby webserver.rb 7080 /notification-center/api/nc profiles_vomp_mixed_aggregated.json |
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
require 'ap' | |
require 'json' | |
require 'webrick' | |
require 'webrick/httpproxy' | |
# API stubbing for frontend testing: proxy method | |
# Thorsten Bosbach 03/2018 | |
if ARGV.count != 3 | |
ap "Usage: ruby proxy.rb port request-path file" |
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
<?php | |
# script to feed HTML to SMTP to put email in inbox of local webmailer | |
# Thorsten Bosbach 08/2016 | |
$script_name = 'telnet_mail.php'; | |
$smtp_host_name = 'localhost'; | |
$smtp_host_port = 24; // 25 | |
$smtp_greeting = 'LHLO'; // EHLO | |
$recipient_adress = 'testuser'; | |
define('PHP_QPRINT_MAXL', 75); |