Skip to content

Instantly share code, notes, and snippets.

View ZEROF's full-sized avatar

ZEROF

View GitHub Profile

Keybase proof

I hereby claim:

  • I am zerof on github.
  • I am zerof (https://keybase.io/zerof) on keybase.
  • I have a public key whose fingerprint is 9496 BC80 3B9C 3C65 6E78 A5B9 C759 1EFB EDFC 6E11

To claim this, I am signing this object:

@ZEROF
ZEROF / openvas-backbox4.sh
Last active August 10, 2024 16:21
OpenVAS 7 BackBox 4 installation
#!/bin/bash
# Install OpenVas 7 with BackBox 4.0
# Author ZEROF <zerof at backbox dot org>
# Orginal idea (not working any more): http://www.mockel.se/index.php/2014/02/openvas-7-beta-on-ubuntu-14-04-lts-beta/
# This installation guide was update and translated to script by ZEROF for BackBox 4 users.
# -OpenVas packages updated to last version /x2
# -Fixed installation erros
# -Installing gpg key for feeds upgrade
# -Setting user and password
# -Remove script was upgraded and remove menu option included
@ZEROF
ZEROF / ftp-backup.pl
Created October 7, 2014 16:43
FTP Perl backup script for Debian 7
#!/usr/bin/perl -w
# ORGINAL FTP BACKUP SCRIPT V1.00
# Version 1.01 2nd hand coded BY ZEROF <zerof at backbox.org>
# This script was updated because some providers support only FTP passive mode (like online.net)
# And I needed Debian support as well (replaced path of gzip)
# SFTP support didn't work, need few lines of new code I guess, I didn't spend to much time on that part
# i just disabled, for now. If you have idea about fixing this, keep me posted.
# Is this best solution you will find? Nop, find some more secured scipt like duplicity
# COPYRIGHT 2013 - WEBHOSTINGHERO.COM
@ZEROF
ZEROF / nodewatch.sh
Last active August 29, 2015 14:07
Node watch installation script
#!/bin/bash
# This script will help you to set Nodewatch (http://vpsantiabuse.com/).
# Tested with Debian 7 32/64bit.
# Script 2nd hand author ZEROF <[email protected]>
# Idea was born here https://vpsaddicted.com/installing-and-configuring-nodewatch-on-debian-7/
# If you like Linux and security join http://backbox.org
# Script version 0.3b
# This script is distributed under a DO WHAT THE F*** YOU WANT TO PUBLIC LICENSE.
# http://rmlh.me/license.html
@ZEROF
ZEROF / beaglebon-linux-settings.sh
Created July 3, 2014 12:31
Driver installation for BeagleBone for Linux user isn't required, but you might find a few udev rules helpful.
cat > /etc/udev/rules.d/73-beaglebone.rules <<EOF
ACTION=="add", SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_interface", \
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="a6d0", \
DRIVER=="", RUN+="/sbin/modprobe -b ftdi_sio"
ACTION=="add", SUBSYSTEM=="drivers", \
ENV{DEVPATH}=="/bus/usb-serial/drivers/ftdi_sio", \
ATTR{new_id}="0403 a6d0"
ACTION=="add", KERNEL=="ttyUSB*", \
@ZEROF
ZEROF / hiawatha.sh
Last active August 20, 2020 12:38
Hiawatha web server install script (Hiawatha,PHP-FPM,MariaDB)
#!/bin/bash
# This script will help you to set Hiawatha Server.
# Tested on Devuan 8 32/64bit. Debian Jessie supported as well.
# Script author ZEROF <zerof at backbox dot org>
# If you like Linux and security join http://backbox.org
# Script version 0.6c
# This script is distributed under a DO WHAT THE F*** YOU WANT TO PUBLIC LICENSE.
# http://www.wtfpl.net/txt/copying/
clear
function banner ()