Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
echo -n "That's the text"|openssl enc -e -aes-256-cbc -a | |
Encrypt with interactive password. Encrypted message is base64-encoded afterwards. | |
echo -n "That's the text"|openssl enc -e -aes-256-cbc -a -k "MySuperPassword" | |
Encrypt with specified password. Encrypted message is base64-encoded afterwards. | |
echo "GVkYiq1b4M/8ZansBC3Jwx/UtGZzlxJPpygyC"|openssl base64 -d|openssl enc -d -aes-256-cbc | |
Base-64 decode and decrypt message with interactive password. | |
echo "GVkYiq1b4M/8ZansBC3Jwx/UtGZzlxJPpygyC"|openssl base64 -d|openssl enc -d -aes-256-cbc -k "MySuperPassword" |
Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
I hereby claim:
To claim this, I am signing this object:
By default the PLDT HOME FIBR AN5506-04-FA RP2616 comes only with limited settings.
Hidden from the web interface are the rest of the router's capabilities and advanced settings.
We just need to enter the right url for the settings you're looking for.
We need to be logged in before we can do anything else, use your defined password if you already set the admin password.
I hereby claim:
To claim this, I am signing this object:
#/bin/sh | |
color=$(tput setaf 153) | |
color2=$(tput setaf 6) | |
set -e | |
yt -o 1.mp4 "$1" | |
yt -f html5-audio-high -o 1.mp3 "$1" | |
printf '\x00\x00' | dd of=1.mp4 bs=1 count=2 conv=notrunc | |
for i in `seq 1 $2`; do echo "file '1.mp4'" >> 1.txt; done |
@rem Do not use "echo off" to not affect any child calls. | |
@SETLOCAL | |
@SETLOCAL ENABLEEXTENSIONS | |
:: Figure out where msys's root folder. If you want, you could just add the folder in the line | |
:: below. | |
@set MSYSROOT= | |
@if "x%MSYSROOT%"=="x" @if exist "%~dp0msys.bat" @set MSYSROOT=%~dp0 | |
@if "x%MSYSROOT%"=="x" @if exist "%~dp0.msys-root" @set /P MSYSROOT=<%~dp0.msys-root | |
@if "x%MSYSROOT%"=="x" ( |
#user nobody; | |
worker_processes auto; | |
error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
pid logs/nginx.pid; |
#!/bin/bash | |
LATESTNGINX="1.11.10" | |
BUILDROOT="/tmp/boring-nginx" | |
# Pre-req | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
# Install deps |
using System; | |
using System.Text; | |
using System.IO; | |
using System.Diagnostics; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Sockets; | |