Skip to content

Instantly share code, notes, and snippets.

View Phillip-C's full-sized avatar

Phil Phillip-C

  • United States
View GitHub Profile
@Phillip-C
Phillip-C / brutus.py
Created September 3, 2017 17:06
Python FTP Brute-Force and Dictionary Attack Tool
#!/usr/bin/python
################################################################################
# tool: Brutus - FTP Brute-Force/Dictionary Attack Tool
# version: 0.3
# email: mrh@bushisecurity.com
# www: bushisecurity.com/brutus/
################################################################################
# MIT License
@Phillip-C
Phillip-C / pagen.py
Created September 3, 2017 17:07
Brute-Force Password Generator
#!/usr/bin/python
################################################################################
# tool: PaGen - Brute-Force Password Generator
# version: 0.2
# email: mrh@bushisecurity.com
# www: bushisecurity.com/pagen/
################################################################################
# MIT License
@Phillip-C
Phillip-C / Escalate.cs
Last active July 12, 2018 04:26
Malicious EXE for attacking unquoted Windows service
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
@Phillip-C
Phillip-C / pyxhook.py
Last active October 25, 2018 17:12
An extension to emulate some of the PyHook library on linux
#!/usr/bin/python
#
# pyxhook -- an extension to emulate some of the PyHook library on linux.
#
# Copyright (C) 2008 Tim Alexander <dragonfyre13@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.