Company | Model | Size | License | URL |
---|---|---|---|---|
Meta AI | Llama 3.1:8b | 4.7 GB | Community License | Link |
Meta AI | Llama 3.2:3b | 2.0 GB | Community License | Link |
Meta AI | Llama 3.3:70b | Not specified | Community License | Link |
Gemma 2:9b | 5.4 GB | Apache 2.0 | Link | |
Gemma 2:27b | 15 GB | Apache 2.0 | Link | |
Microsoft | Phi-3:14b | 7.9 GB | MIT License | [Lin |
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
<dashboard version="1.1" theme="dark"> | |
<label></label> | |
<row> | |
<panel> | |
<viz type="missile_map.missile_map"> | |
<search> | |
<query>| tstats count from datamodel=cloudflare.cloudflare where cloudflare.ClientCountry="*" cloudflare.ClientDeviceType="*" cloudflare.SecurityRuleID!="" cloudflare.dest_ip="*" cloudflare.dest_host="*" cloudflare.uri_path="*" cloudflare.http_user_agent="*" cloudflare.status="*" cloudflare.src_ip="*" cloudflare.OriginResponseStatus="*" cloudflare.RayID="*" cloudflare.WorkerSubrequest="*" cloudflare.http_method="*" groupby cloudflare.src_ip cloudflare.dest_ip | |
| rename cloudflare.src_ip as src_ip, cloudflare.dest_ip as dest_ip | |
| sort - count | |
| head 999 |
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
85.239.34[.]190 | |
203.189.137[.]125 | |
yell64u[.]top - UNC5952 (Molatori) | |
uphelp[.]top - UNC5952 (Molatori) | |
numolatori[.]icu - UNC5952 (Molatori) | |
beri1[.]com | |
fposhelp[.]com | |
remoteconnection[.]com | |
molatorisy[.]icu - UNC5952 (Molatori) | |
6559464[.]com |
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
{ | |
"email": "[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Z|a-z]{2,}", | |
"phone": "\\d{3}[-.]?\\d{3}[-.]?\\d{4}", | |
"ssn": "\\d{3}-\\d{2}-\\d{4}", | |
"host": "(?i)((?:(?!-)[a-zA-Z0-9-]{1,63}(?<!-)\\.)+(?:[a-zA-Z]{2,}))", | |
"ipv4": "(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)" | |
} |
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
{ | |
"credit_card": "\\b\\d{4}[-\\s]?\\d{4}[-\\s]?\\d{4}[-\\s]?\\d{4}\\b", | |
"custom_email": "\\b[A-Za-z0-9._%+-]+@company\\.com\\b", | |
"zip_code": "\\b\\d{5}(?:-\\d{4})?\\b" | |
} |
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
""" | |
title: CloudFlare Manifold Pipe | |
authors: christian-taillon | |
author_url: https://christiant.io | |
funding_url: https://github.com/open-webui | |
version: 0.1.6 | |
required_open_webui_version: 0.3.17 | |
license: MIT | |
""" |
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
{ | |
"id": "madison-the-cybersecurity-manager", | |
"base_model_id": "qwen2.5:14b", | |
"name": "AI Madison the Cybersecurity Manager", | |
"meta": { | |
"description": "A cybersecurity manager responsible for cybersecurity strategy and operations with a focus on security policies, risk management, team leadership, and strategic planning within the cybersecurity domain.", | |
"capabilities": { | |
"vision": false, | |
"citations": true |
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
""" | |
title: Anthropic Manifold Pipe v2 | |
description: An enhanced implementation of the Anthropic API integration for Open WebUI, | |
featuring improved streaming performance, robust error handling, and optimized | |
response processing for both streaming and non-streaming requests. | |
version: 0.1.6 | |
license: MIT | |
fork of: https://openwebui.com/f/justinrahb/anthropic/ |
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 | |
# Function to disable GUI and power management | |
disable_gui_power() { | |
echo "Disabling GUI and power management..." | |
# Disable sleep and hibernate | |
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target | |
# Disable GNOME power management |
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