This code is now hosted here: https://github.com/oxagast/sudo_skimmpass
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 module requires Metasploit: https://metasploit.com/download | |
| # Current source: https://github.com/rapid7/metasploit-framework | |
| ## | |
| require 'msf/core' | |
| require 'webrick' | |
| require 'thread' | |
| class Metasploit3 < Msf::Exploit::Remote | |
| Rank = ExcellentRanking |
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 | |
| # | |
| # Powerlock | |
| # | |
| # -- Copyright: oxasploits.com / Marshall Whittaker -- | |
| # | |
| # Dependancies: i3lock, LUKS, sudo or systemd, expect | |
| # | |
| # Configuration: Use something like 'xidle' to invoke this script after | |
| # the mouse has not been moved for a certain amount of time by adding |
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/perl | |
| use strict; | |
| use vars qw($VERSION %IRSSI); | |
| $VERSION = '1.0'; | |
| %IRSSI = ( | |
| authors => 'oxagast', | |
| contact => 'oxagast@oxasploits.com', | |
| name => 'StripColor', | |
| description => 'Strips IRC special codes from outgoing messages.', |
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/bash | |
| # oxagast / marshall@oxasploits.com | |
| # | |
| # | |
| maxres="480p" ## Target Resolution | |
| audiochs=2 ## Max Audio Channels | |
| maxsize=600 ## Max filesize in megabytes | |
| # | |
| cleanup() |
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 | |
| # oxagast / marshall@oxasploits.com | |
| if [[ $# -eq 1 ]] || [[ $# -eq 2 ]]; then | |
| if [[ $# -eq 1 ]]; then | |
| ESIZE=1000000000000000000; | |
| fi | |
| if [[ $# -eq 2 ]]; then | |
| ESIZE=$2; | |
| fi | |
| while test -s $1 && [[ $ESIZE -ge $(stat --printf "%s" $1) ]]; do |
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 | |
| # Author: oxagast / Marshall Whittaker | |
| # | |
| # Modify the next two lines to reflect your configuration. | |
| FILE="/home/oxagast/.irssi/fnotify" | |
| IRCBOX="ircbox" | |
| LAST=0 | |
| FIRSTRUN=1 | |
| while true; |
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/bash | |
| # num snapshots to hold back | |
| KEEP=3 | |
| # Define the ZFS filesystem to snapshot | |
| ZFS_FILESYSTEM="storage" | |
| # Define the snapshot name prefix | |
| SNAPSHOT_PREFIX="snap" |
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/ruby | |
| require "rss" | |
| require "date" | |
| urlbase = "https://oxasploits.com" | |
| rss = RSS::Maker.make("atom") do |maker| | |
| maker.channel.author = "Marshall Whittaker" | |
| maker.channel.about = urlbase + "/exploits/" | |
| maker.channel.title = "The Oxasploits Exploit Feed" | |
| maker.channel.updated = Time.now.to_s | |
| Dir.glob('sploits/*.md') do |md_filename| |
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
| [Unit] | |
| Description= Guest VM %I | |
| After=network.target vboxdrv.service | |
| Before=runlevel2.target shutdown.target | |
| [Service] | |
| User=marshall | |
| Group=vboxusers | |
| Type=forking | |
| TimeoutSec=5min |
NewerOlder