Found 71 bookmarks
Newest
Trilium Notes
Trilium Notes
Trilium is an open-source solution for note-taking and personal knowledge bases. Use it locally or sync with your own server to access notes anywhere.
·triliumnotes.org·
Trilium Notes
Sign Up
Sign Up
Build and deploy software collaboratively with the power of AI without spending a second on setup.
·replit.com·
Sign Up
Cursor
Cursor
Cursor is the best way to build software with AI.
·cursor.com·
Cursor
Prompt caching with Claude | Claude
Prompt caching with Claude | Claude
Claude caches frequently used context between API calls, reducing costs and latency for long prompts. Update : Prompt caching is Generally Available on the Anthropic API. Prompt caching is also available in preview in Amazon Bedrock and on Google Cloud’s Vertex AI.
·claude.com·
Prompt caching with Claude | Claude
RITA - Active Countermeasures
RITA - Active Countermeasures
Real Intelligence Threat Analytics (R-I-T-A) is an open-source framework for detecting command and control communication through network traffic analysis.
The RITA framework ingests Zeek logs in TSV or JSON format, or PCAPs converted to Zeek logs for analysis.
hunt teaming. This is where an organization has a team of individuals who actively go looking for evil on a network. This makes some significant assumptions
VSagent. It hides its Command and Control (C2) traffic into the “__VIEWSTATE” parameter, which is base64 encoded. Further, it beacons every 30 seconds.
Beacon Detection: Search for signs of beaconing behavior in and out of your network
DNS Tunneling Detection: Identify signs of DNS-based covert channels
RITA now uses a new database called ClickHouse. It uses a storage approach that is significantly different from the previous MongoDB setup and is much better suited for handling the static records generated by a Zeek sensor
cd wget https://github.com/activecm/rita/releases/download/v5.0.0-beta/rita-v5.0.0-beta.tar.gz tar -xzvf rita-v5.0.0-beta.tar.gz cd rita-v5.0.0-beta-installer ./install_rita.sh localhost
·activecountermeasures.com·
RITA - Active Countermeasures
Access your homelab from anywhere with a YubiKey and mutual TLS
Access your homelab from anywhere with a YubiKey and mutual TLS
By combining YubiKey’s smart card support with mutual TLS client certificates, hardware-bound private keys, and device attestation, you can expose your homelab to the internet in a way that carries very low security risk.
·smallstep.com·
Access your homelab from anywhere with a YubiKey and mutual TLS
Spider Scraper - CrewAI
Spider Scraper - CrewAI
The `SpiderTool` is designed to extract and read the content of a specified website using Spider.
·docs.crewai.com·
Spider Scraper - CrewAI
RAMBO: Leaking Secrets from Air-Gap Computers by Spelling Covert Radio Signals from Computer RAM
RAMBO: Leaking Secrets from Air-Gap Computers by Spelling Covert Radio Signals from Computer RAM
In this paper, we show how malware can manipulate RAM to generate radio signals at clock frequencies. These signals are modified and encoded in a particular encoding allowing them to be received from a distance away. The attacker can encode sensitive information (keylogging, documents, images, biometric information, etc.) and exfiltrate it via these radio signals. An attacker with appropriate hardware can receive the electromagnetic signals, demodulate and decode the data, and retrieve the exfiltrated information.
·arxiv.org·
RAMBO: Leaking Secrets from Air-Gap Computers by Spelling Covert Radio Signals from Computer RAM
Shadow overruling: it’s not just for Humphrey’s Executor
Shadow overruling: it’s not just for Humphrey’s Executor
Cases and Controversies is a recurring series by Carolyn Shapiro, primarily focusing on the effects of the Supreme Court’s rulings, opinions, and procedures on the law, on other institutions, and on […]
·scotusblog.com·
Shadow overruling: it’s not just for Humphrey’s Executor
guardianproject / AnyNews / AnyNews Web Client · GitLab
guardianproject / AnyNews / AnyNews Web Client · GitLab

Your config.js will then resemble this:

module.exports = { appName: "MyNews", basePath: "https://mydomain.com", enableCategories: false, accentColor: "#6699cc", flavors: { default: { name: "MyFeed", localeName: "en", defaultForLanguages: ["en"], cssFile: "./assets/css/default.css", url: "https://mydomain.com/feed/", //defaultImage: "<URL or base64 Data-URL>", categories: [ ], isRTL: false }, } };

We need to make

We need to make one more change so that you can run tests on your brand new instance of AnyNews. Modify the file public/proxies.js to indicate that access to your service URL will be proxied through the Node Package Manager development environment while you are testing. In the class ProxyHandlerClass, you'll notice that this.proxies is set to use "/localproxy". Leave that in place. Immediately below, change this.proxiedUrls from https://www.nasa.gov to the basePath URL you used in config.js (again, no trailing slash). If you used an empty path as the basePath in config.js, supply the scheme and domain here. In our sample above we have https://www.mydomain.com. As a result, the top portion of your public/proxies.js file will look like:

// eslint-disable-next-line (function () { class ProxyHandlerClass { constructor() { this.proxies = [ // // -- enable /localproxy for testing/development // "/localproxy" // // -- if you're proxying, insert your proxy URLs here (no trailing slash) // // "https://your.proxy.here" // "https://your.proxy2.here" // .. ]; // // --* same URL as 'basepath' on src/config.js // Make sure there is no trailing slash on this URL // this.proxiedUrls = [ "https://www.mydomain.com" ]; this.idxCurrentProxy = 0; this.useDevServer = false; this.useStaticProxy = false; // Set to true to replace all URLs in incoming data this.setRandomProxy(); // Init to random } ...

Return to the AnyNews top-level directory once you've made these modifications and run the following command:

npm run serve

NOTE: If you DID NOT run the demonstration above, you'll need to initialize npm here, so instead run:

·gitlab.com·
guardianproject / AnyNews / AnyNews Web Client · GitLab