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
.gradle | |
/gradle/ | |
/local.properties | |
/gradle.properties | |
/.idea/workspace.xml | |
/.idea/libraries | |
.DS_Store | |
/build |
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/ruby | |
# | |
# Wrapper to run gimli | |
# | |
# (c) 2015 Bernd Busse | |
require 'rubygems' | |
version = ">= 0" |
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/sh | |
# | |
# dxx-autobuild - build the most current bazaar tree of DXX-REBIRTH | |
# Copyright (C) 2015 Bernd Busse | |
# | |
# 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 3 of the License, or | |
# (at your option) any later version. | |
# |
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 | |
# | |
# Resize images (shrink only) to screen sized .jpg | |
# | |
# (c) 2015 Bernd Busse | |
# | |
BLUE="\e[1;34m" | |
RED="\e[1;31m" | |
GREEN="\e[1;32m" |
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 | |
# | |
# (c) 2015 Bernd Busse | |
# | |
if ! pgrep stalonetray &>/dev/null; then | |
# start stalonetray | |
stalonetray --geometry 10x1 --grow-gravity W --icon-gravity SE --icon-size 16 --kludges force_icons_size --skip-taskbar true --sticky true --transparent true --tint-color black --tint-level 128 --window-strut bottom & | |
fi |
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
/** | |
* xlib_err | |
* print error message for specific error code | |
* | |
* (c) 2016 Bernd Busse | |
**/ | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <errno.h> |
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
[Unit] | |
Description=Arachni Web Application Scanner – WebUI | |
Requires=postgresql.service | |
After=postgresql.service | |
[Service] | |
Type=forking | |
PIDFile=/var/run/arachni_web.pid | |
ExecStart=/usr/local/bin/arachni_web -D -P /var/run/arachni_web.pid |
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 python3 | |
# -*- coding: utf-8 -*- | |
# | |
# (c) 2020 Bernd Busse | |
# | |
"""Implementation of AES as used by https://aesencryption.net.""" | |
import base64 | |
import sys |
OlderNewer