https://www.reddit.com/r/unixporn/comments/73t6k3/i3gaps_firewatch/ https://www.reddit.com/r/unixporn/comments/72vlhk/i3gaps_bits_from_here_and_there/
This file contains hidden or 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
| https://wiki.archlinux.org/index.php/Bluetooth_headset | |
| https://unix.stackexchange.com/questions/258074/error-when-trying-to-connect-to-bluetooth-speaker-org-bluez-error-failed |
This file contains hidden or 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
| ~/Android/Sdk/emulator $ ./emulator @Nexus_4_API_26 -http-proxy 127.0.0.1:8080 |
This file contains hidden or 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
| alert(1); |
test test
Test for dynamic rendering :
[{{ config['WEBSITE_NAME'] }}]({{ url_for("home.index") }})
- Conduct Search Engine Discovery and Reconnaissance for Information Leakage
- Fingerprint Web Server
- Review Webserver Metafiles for Information Leakage
- Enumerate Applications on Webserver
- Review Webpage Comments and Metadata for Information Leakage
- Identify application entry points
This file contains hidden or 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
| # Padding Oracle Attack against PKCS7 | |
| # From https://github.com/mpgn/Padding-oracle-attack | |
| # martial puygrenier | |
| #################################### | |
| # CUSTOM YOUR RESPONSE ORACLE HERE # | |
| #################################### | |
| ''' the function you want change to adapte the result to your problem ''' | |
| def test_validity(response, error): |
This file contains hidden or 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
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "crypto/md5" | |
| //"crypto/sha1" | |
| //"math/rand" | |
| "time" | |
| "encoding/hex" |
This file contains hidden or 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
| def split_r(arr, size): | |
| arrs = [] | |
| while len(arr) > size: | |
| pice = arr[:size] | |
| arrs.append(pice) | |
| arr = arr[size:] | |
| arrs.append(arr) | |
| return arrs | |
| K = separation |
This file contains hidden or 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
| var subdomain = require('express-subdomain'); | |
| var express = require('express'); | |
| var app = express(); | |
| var router = express.Router(); | |
| app.use(subdomain('api', router)); | |
| app.get('/', function (req, res) { |