banner
andrewji8

Being towards death

Heed not to the tree-rustling and leaf-lashing rain, Why not stroll along, whistle and sing under its rein. Lighter and better suited than horses are straw sandals and a bamboo staff, Who's afraid? A palm-leaf plaited cape provides enough to misty weather in life sustain. A thorny spring breeze sobers up the spirit, I feel a slight chill, The setting sun over the mountain offers greetings still. Looking back over the bleak passage survived, The return in time Shall not be affected by windswept rain or shine.
telegram
twitter
github

随机に10000組のOPENAIAPI-KEYを生成します。

紹介
これは Python の小さな練習です。これは Python のコードであり、10000 のランダムな Open AI キーを自動生成し、使用可能なキーを検索できます。

コードは非常にシンプルで、gen.py は生成に使用され、hack.py は hack フォルダ内の 2 つの py ファイルを実行するために使用されます。

生成の効果

640

640 (1)
使用上の注意
実際には、gen.py ファイルだけを使用すれば十分です。キーの有効性を確認するためには、API-KEY 情報クエリを使用してhttps://chatc.vip/key.html でクエリを行うことができます。

生成されたキーはランダム性を持っており、必ずしも有効であることを保証するものではありません。運次第です。

Screenshot_4
ランダム生成コードは以下の通りです:

import random
import string
import base64

for key in range(1, 10001):
  prefix = "sk-"
  random_string = ''.join(random.choices(string.ascii_letters + string.digits, k=36))
  encoded_string = base64.b64encode(random_string.encode()).decode()

  generated_string = prefix + encoded_string.replace("=", "")
  print(f"Key {key} : {generated_string}")
  with open("keys_1", "a") as f:
    f.write(generated_string + "\n")
読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。