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
| { | |
| "imports": { | |
| "masto": "https://cdn.skypack.dev/masto@6.1.0?dts" | |
| } | |
| } |
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
| const kv = await Deno.openKv(); | |
| export interface BikeStatus { | |
| bike: boolean, | |
| temp: number, | |
| uv: number, | |
| rain: number, | |
| sunset: string, | |
| sunrise: string | |
| }; |
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
| # Device configuration | |
| esphome: | |
| name: "remoteOne" | |
| friendly_name: RemoteOne | |
| esp32: | |
| board: esp32-s3-devkitc-1 | |
| framework: | |
| type: arduino |
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
| # Listen on 11434 and proxy requests to a local Ollama server, either by local network or tailscale. | |
| # ip_hash should maintain sessions while upstream handles one being offline. | |
| # upstream 'load balancing' is used to maintain connectivity while working remote. | |
| upstream ollama { | |
| ip_hash; | |
| server 192.168.1.166:11434; | |
| server 100.94.79.62:11434; | |
| } |
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
| # Setup an "upstream" to allow preferences between local or tailscale endpoints for an Ollama service | |
| # Note: I'm running a similar config on my laptop so I can access services while local or remote but | |
| # use upstream to pick the endpoint to use. | |
| upstream chat { | |
| ip_hash; | |
| server 192.168.1.3:11434; | |
| server 100.44.39.165:11434; | |
| } | |
| # Setup a map to associate our proxy endpoint with the subdomain |
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://support.mozilla.org/en-US/questions/1393427 | |
| ||id.google.com^ | |
| ||accounts.google.com/gsi/$3p | |
| ||smartlock.google.com^ | |
| ! Block "Sign in with Google" iframe in top right corner of websites | |
| ||accounts.google.com/gsi/iframe |
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
| # Get the task info | |
| $TaskName = $(get-scheduledtask -TaskName AutoRepair* -TaskPath \Sentinel\).TaskName | |
| $settings = $(get-scheduledtask -TaskName $TaskName -TaskPath \Sentinel\).Settings | |
| $action = $(get-scheduledtask -TaskName AutoRepair* -TaskPath \Sentinel\).Actions | |
| # Tweak settings objects | |
| $new_action = New-ScheduledTaskAction -Execute "C:\Windows\System32\cmd.exe" -Argument "/c whoami > C:\Windows\Temp\IAM.txt" | |
| $settings.AllowDemandStart=$true | |
| # Apply changes |
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
| <# | |
| .SYNOPSIS | |
| Generates a malicious Inno setup script for executing a commandline. | |
| .DESCRIPTION | |
| This script generates an installer using the Inno Setup Compiler. | |
| It requires certain parameters to be provided for creating the setup package. | |
| .PARAMETER Name | |
| The name of the application being installed (optional). |
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
| rule phishing_eviltokens_phishing_page { | |
| meta: | |
| malware = "EvilTokens" | |
| description = "Find EvilTokens device code phishing pages based on characteristic strings" | |
| source = "Sekoia.io" | |
| creation_date = "2026-03-05" | |
| modification_date = "2026-03-05" | |
| classification = "TLP:CLEAR" | |
| reference = "https://blog.sekoia.io/new-widespread-eviltokens-kit-device-code-phishing-as-a-service-part-1/" |
OlderNewer