$ node index.js
[45] map a
[45] map b
[45] map c
[45] filter az
[55] filter bz
[55] filter cz // <- This wait to bz to finish!
This file contains 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
fs.readFileStream("./file.pcapng") | |
.useTransform(async function* (source) { | |
let block = Buffer.alloc(0); | |
for await (const chunk of source) { | |
block = Buffer.concat(block, chunk); | |
if (block.length < REQUIRED_BLOCK_SIZE_TO_GET_TO_TOTAL_LENGTH) { | |
continue; |
This file contains 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
FROM ubuntu:bionic-20220531 | |
# Must be root to install the packages | |
USER root | |
# Install required deps | |
RUN apt update | |
RUN apt -y install gnupg wget apt-transport-https coreutils java-common | |
# Import Elasticsearch GPG Key |
This file contains 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
a |
sudo curl -o /usr/local/bin/docker-load-and-push https://gist.githubusercontent.com/rluvaton/ef6415c79c35c5b11c535040e79ab43b/raw/19cb82651a10d5256f512331b484dee8a19a8058/docker-load-and-push.sh && sudo chmod +x /usr/local/bin/docker-load-and-push
This file contains 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 getAllRecordingsUrl() { | |
return Array.from(document.querySelectorAll('a[href^="/view/"]')).map(a => a.href) | |
} | |
function sendDeleteRecordingReq(id) { | |
return fetch(`https://terminalizer.com/delete/${id}`, { | |
"headers": { | |
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", | |
"accept-language": "en-US,en;q=0.9,he;q=0.8", | |
"sec-fetch-dest": "document", |
Note: The npm download script currently only download zip files
- Move to dedicated repo
- Add CLI tool for the npm and node download script
- Replace
request
lib with not deprecated one - Download index.json by itself
- Install another formats of npm (not just zip)