Skip to content

Instantly share code, notes, and snippets.

@xserveraws
xserveraws / fix.sh
Created November 16, 2022 05:52 — forked from jeffersfp/fix.sh
dpkg: warning: files list file for package `*****' missing, assuming package has no files currently installed
#!/bin/bash
set -e
# Clean out /var/cache/apt/archives
apt-get clean
# Fill it with all the .debs we need
apt-get --reinstall -dy install $(dpkg --get-selections | grep '[[:space:]]install' | cut -f1)
DIR=$(mktemp -d -t info-XXXXXX)
for deb in /var/cache/apt/archives/*.deb
@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active April 2, 2025 23:16
crack activate Office on mac with license file
@xserveraws
xserveraws / workaround-airmn-ng.sh
Created January 4, 2018 16:01 — forked from mtaziz/workaround-airmn-ng.sh
Workaround for airmon-ng on Kali Linux 2.0
# download compat wireless (compat-wireless-2010-06-26-p.tar.bz2)
# http://linuxwireless.org/download/compat-wireless-2.6/
cd ~/Downloads
ls
tar -jvxf compat-wireless-2010-06-26-p.tar.bz2
ls
cd compat-wireless-2010-06-26-p
make unload
make load
@e7d
e7d / README.md
Last active December 19, 2022 09:13
[Debian] Build a Squid anonymous proxy from source code

If you don't want to build Squid from scratch, you can simply Setup a Squid anonymous proxy

Build a Squid anonymous proxy from source code

Please note that this whole manual refers to the version 3.5.23 of Squid. You probably would have to adapt some commands to the version you will actually download.

Table of contents

#!/bin/sh
# Shell script to install your public key on a remote machine
# Takes the remote machine name as an argument.
# Obviously, the remote machine must accept password authentication,
# or one of the other keys in your ssh-agent, for this to work.
#
# http://www.devthought.com/2009/09/19/get-ssh-copy-id-in-mac-os-x/
#
@mhulse
mhulse / .htaccess
Created June 28, 2012 02:37
Wordpress demo .htaccess file...
# http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
<FilesMatch "\.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$">
order allow,deny
deny from all
</FilesMatch>
# http://css-tricks.com/snippets/htaccess/shock-teenage-gangsters-with-wp-config-redirect/
Redirect 301 /wp-config.php http://svr.gov.ru/
# Turn on the rewrite engine: