This word list is recommended by MNX.io in the article A Proper Server Naming Scheme.
Choose a word at will from the word list below.
The easiest way to randomly get a word from the wordlist on Linux is:
shuf -n 1 $FILENAME
#!/bin/bash | |
# Change .deb control file and repackage | |
# credits Loevborg http://ubuntuforums.org/showthread.php?t=636724&p=3925729#post3925729 | |
if [[ -z "$1" ]]; then | |
echo "Syntax: $0 debfile" | |
exit 1 | |
fi |
<?php | |
/* | |
+----------------------------------------------------------------------+ | |
| Uploadprogress extension | | |
+----------------------------------------------------------------------+ | |
| Copyright (c) 2006-2008 The PHP Group | | |
+----------------------------------------------------------------------+ | |
| This source file is subject to version 3.01 of the PHP license, | | |
| that is bundled with this package in the file LICENSE, and is | | |
| available through the world-wide-web at the following url: | |
sudo apt-get update && sudo apt-get install -y apt-transport-https | |
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - | |
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | |
sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian bionic contrib" | |
sudo apt update | |
sudo apt install virtualbox-6.0 |
This word list is recommended by MNX.io in the article A Proper Server Naming Scheme.
Choose a word at will from the word list below.
The easiest way to randomly get a word from the wordlist on Linux is:
shuf -n 1 $FILENAME
Code example using WebCrypto, File API, indexedDB, createObjectURL and Workers.
<input type="file" onsubmit="process_upload">
var workerjs=' \
onmessage=function(evt) { \
var encrypt=crypto.workersubtle.encrypt({name:"AES-CBC",iv:new Uint8Array(16)},evt.data[0]); \
var buffer=evt.data[1]; \
##Target
Protecting the privacy of the bittorrent users and protecting them from the monitoring spies making their activity much less visible by changing the way they connect to a torrent and setting a method to establish dynamic blocklists and maintain them.
##Abstract
Previous research has focused mainly on discovering monitors using trackers, this study focuses on tracking and blocking the monitors using the bittorrent peers and content discovery system only (called the DHT).
The global result is that the spies are organized to monitor automatically whatever exists in the bittorrent network, they are easy to find but difficult to follow since they might change their IP addresses and are polluting the DHT.
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |
#!/bin/bash | |
## List all manually installed packages on a debian/ubuntu system | |
## manually installed means: | |
## 1. not pre-installed with the system | |
## 2. not marked auto-installed by apt (not dependencies of other | |
## packages) | |
## Note: pre-installed packages that got updated still needs to be | |
## filtered out. |
#!/usr/bin/env python3 | |
# vim: sw=4 ts=4 et tw=100 cc=+1 | |
# | |
#################################################################################################### | |
# DESCRIPTION # | |
#################################################################################################### | |
# | |
# Decompressor/compressor for files in Mozilla's "mozLz4" format. Firefox uses this file format to | |
# compress e. g. bookmark backups (*.jsonlz4). | |
# |