A proper repository has been created ! This project has moved to: https://github.com/initbrain/Python-Wi-Fi-Positioning-System
This file contains 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 python2.7 | |
# Kivy + Matplotlib + Scipy spectrogram test | |
# Julien Deudon (initbrain) | |
# 201703160114 | |
# See : | |
# https://github.com/kivy-garden/garden.matplotlib/tree/master/examples | |
# https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.spectrogram.html | |
This file contains 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 | |
import cv2.cv as cv | |
from datetime import datetime | |
import time | |
class MotionDetectorAdaptative(): | |
def onThresholdChange(self, val): # Callback when the user change the detection threshold | |
self.threshold = val |
This file contains 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
local shortport = require "shortport" | |
local http = require "http" | |
local stdnse = require "stdnse" | |
local brute = require "brute" | |
local creds = require "creds" | |
description = [[ | |
Performs a dictionary/bruteforce attack over login and password fields of Apache Tomcat default web management pages. | |
]] |
This file contains 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 | |
import sys | |
import traceback | |
import smtplib | |
from socket import gaierror | |
from email import MIMEMultipart | |
from email import MIMEText | |
from email.utils import formatdate | |
from time import * |
This file contains 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 | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |
This file contains 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 | |
# Cubieboard A10 - SD Card installation script | |
# Debian 7.4 - Linux 3.4.79-r0-s-rm1+ "server" kernel | |
# Julien Deudon (initbrain) - 25/03/2014 | |
# Tested on Debian 7.4 | |
# Required: | |
# apt-get install build-essential git udev coreutils bzip2 curl | |
# make (apt-get install build-essential) | |
# git (apt-get install git) |
This file contains 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 | |
# arp_monitor.sh | |
# Check if each IP address has a unique MAC address in the ARP table | |
# Julien Deudon (initbrain) | |
# Known duplicate MAC address | |
# ("aa:bb:cc:dd:ee:ff" "aa:bb:cc:dd:ee:ff" "aa:bb:cc:dd:ee:ff") | |
bypass_macaddr=() | |
# Waiting time between each check |
This file contains 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 | |
from Queue import Queue | |
from threading import Thread | |
from urllib2 import urlopen | |
from re import compile, MULTILINE | |
from time import time | |
class ThreadUrl(Thread): |
This file contains 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 | |
# -*- coding: utf-8 -*- | |
# Pour les tests : | |
# python tineye_pic_search.py -d -l "http://upload.wikimedia.org/wikipedia/commons/c/c1/Glider_(clarince63).png" | |
# python tineye_pic_search.py -d -i /home/initbrain/Images/glider.png | |
# Importations | |
import sys | |
import os |
NewerOlder