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
| import sqlite3 | |
| import urllib.request, json | |
| locale = "es_ES" # Most used would be en_GB or en_US | |
| region = "eu" # Or "us" | |
| realm = "cthun" # Without symbols nor spaces | |
| api_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" # Your API key as explained in the post | |
| url_address = "https://" + region + ".api.battle.net/wow/auction/data/" + realm + "?locale=" + locale + "&apikey=" + api_key |
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
| BEGIN TRANSACTION; | |
| DROP TABLE IF EXISTS `status`; | |
| CREATE TABLE IF NOT EXISTS `status` ( | |
| `realm` TEXT NOT NULL, | |
| `timestamp` INTEGER NOT NULL, | |
| PRIMARY KEY(`realm`) | |
| ); | |
| DROP TABLE IF EXISTS `auction`; | |
| CREATE TABLE IF NOT EXISTS `auction` ( | |
| `auc` INTEGER NOT NULL, |
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
| /* | |
| PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses | |
| Floated div edition | |
| 01-05-2017 | |
| (c) 2017 - Loran Kloeze - loran@ralon.nl | |
| This script creates a UI on top of the WhatsApp Web interface. It enumerates certain kinds | |
| of information from a range of phonenumbers. It doesn't matter if these numbers are part | |
| of your contact list. At the end a table is displayed containing phonenumbers, profile pics, | |
| about texts and online statuses. The online statuses are being updated every |
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/python | |
| # Exploit Title: ossec 2.8 Insecure Temporary File Creation Vulnerability Privilege Escalation | |
| # Date: 14-11-14 | |
| # Exploit Author: skynet-13 | |
| # Vendor Homepage: www.ossec.net/ | |
| # Software Link: https://github.com/ossec/ossec-hids/archive/2.8.1.tar.gz | |
| # Version: OSSEC - 2.8 | |
| # Tested on: Ubunutu x86_64 | |
| # CVE : 2014-5284 | |