This challenge involves finding a hidden SSH server, logging in, and solving a cryptography puzzle to obtain the flag.
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
| #!/usr/bin/env python3 | |
| """Build one JSON file per LinkedIn contact who has messaged the user. | |
| Reads the LinkedIn data export (messages.csv + Connections.csv + | |
| Invitations.csv) and writes <contacts>/<slug>.json for every person who has | |
| contacted the user, recording their description (company + position + email), | |
| the full message history we share, whether the user ever replied, and how the | |
| connection originated (invite direction/date/message). | |
| The user's own profile is identified by PROFILE_URL below. |
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 ( | |
| "context" | |
| "fmt" | |
| "io" | |
| "os" | |
| "github.com/Cyberax/go-nfs-client/nfs4" | |
| ) |
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
| (function (root, factory) { | |
| if (typeof define === "function" && define.amd) { | |
| // AMD. Register as an anonymous module. | |
| define([], factory); | |
| } else if (typeof module === "object" && module.exports) { | |
| // Node. Does not work with strict CommonJS, but | |
| // only CommonJS-like environments that support module.exports, | |
| // like Node. | |
| module.exports = factory(); | |
| } else { |
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
| // To do: Make this into a full blown site that monitors the internet for changes in TLS fingerprints | |
| package main | |
| import ( | |
| "crypto/sha256" | |
| "crypto/tls" | |
| "encoding/hex" | |
| "flag" | |
| "fmt" |
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
| #!/bin/bash | |
| # Default protocol is tcp | |
| PROTOCOL="tcp" | |
| # Use wireguard as default | |
| INTERFACE="wg0" | |
| # Config file path | |
| CONFIG_FILE="${HOME}/.config/portfwd/config" |
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
| class HTMJ { | |
| constructor() { | |
| this.init(); | |
| } | |
| init() { | |
| document.addEventListener("DOMContentLoaded", () => { | |
| this.parseTemplates(); | |
| }); | |
| } |
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 ( | |
| "bufio" | |
| "database/sql" | |
| "fmt" | |
| "os" | |
| "strings" | |
| _ "github.com/mattn/go-sqlite3" |
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
| #!/bin/bash | |
| paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/\(.\)..$/.\1°C/' |
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
| function foo() { | |
| let fetchCopy = window.fetch; | |
| return function() { | |
| return fetchCopy('http://example.com'); | |
| }; | |
| } | |
| let boo = foo(); | |
| function bar() { |
NewerOlder