Reverse proxy to use OpenAI API Join Our Discord Server 😁
- Works same as OpenAI API
- Supports Streaming!
- It's FREE!
Reverse proxy to use OpenAI API Join Our Discord Server 😁
function clean($text) { | |
$text=str_replace('/','',$text); | |
$text=str_replace('*','',$text); | |
$text=str_replace('+','',$text); | |
$text=str_replace('-',' ',$text); | |
$text=str_replace('_',' ',$text); | |
$text=str_replace('=','',$text); | |
$text=str_replace('`','',$text); | |
$text=str_replace('"','',$text); | |
$text=str_replace("'",'',$text); |
#!/usr/bin/python3 | |
import hashlib, hmac | |
import humanize | |
import json | |
import requests | |
from dateutil import parser | |
from http.server import HTTPServer, BaseHTTPRequestHandler | |
BIND_IP = "127.0.0.1" |
<?xml version="1.0" encoding="UTF-8"?><plesk-unified:key xmlns:plesk-unified="http://parallels.com/schemas/keys/products/plesk/unified/multi" core:format="openfusion-3" xmlns:core="http://parallels.com/schemas/keys/core/3"> | |
<!--Unique product Key number--> | |
<core:key-number core:type="string">PLSK.09741637</core:key-number> | |
<!--Key version--> | |
<core:key-version core:type="string">0001</core:key-version> | |
<!--Key description--> | |
<core:description> | |
<core:keytype>Plesk Web Host Edition (14 Days Trial)</core:keytype> | |
<core:property core:value="99">Additional Language Packs</core:property> | |
</core:description> |
# --------- USAGE ----------- | |
# USE THIS FILE IF YOU WANT TO MAINTAIN DIRECTORY STRUCTURE WHILE DECOMPILING ".PYC" TO ".PY" RECURSIVELY | |
# Install Python | |
# Run -> pip install uncompyle6 | |
# Run -> python decompile_pyc_recursively.py -p [PATH-OF-PYC-DIR] | |
# ---------------------------- | |
import argparse | |
import os |
<?php | |
/* | |
Make sure to enter $anticaptcha_key before upload to server. | |
Upload "auto_plesk_trial.php" file to "/home/centos/auto_plesk_trial.php" | |
Then create Schedule Task in Root account of Plesk. | |
Task Type: Run a PHP script | |
Script path: /home/centos/auto_plesk_trial.php | |
Use PHP version: 7.x.x / 8.x.x | |
Run: Cron style * * * * * |
Please don't Buy from any one. | |
if you buy you will scammed. | |
if you need license please contact : [email protected] | |
Must Remember Dlicense is no more. | |
#!/usr/bin/php | |
<?php |
import idaapi, idc, idautils | |
class DecryptorError(Exception): | |
pass | |
def rc4crypt(key, data): | |
x = 0 | |
box = list(range(256)) |