Navigation

    OpenBullet

    OpenBullet

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Awards
    1. Home
    2. Br4uN
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Br4uN

    @Br4uN

    44
    Reputation
    194
    Posts
    333
    Profile views
    9
    Followers
    1
    Following
    Joined Last Online

    Br4uN Follow
    General Mod

    Posts made by Br4uN

    • RE: GreaterThanOrEqualTo / LessThanOrEqualTo in OB2

      @TheNigBigga Actually you can do that in OB through IF Statement, not need to wait for OB2 🙂

      Feel free to check it out these 3 examples.
      1- https://forum.openbullet.dev/topic/1676/help-in-parse-id-value/5
      2- https://forum.openbullet.dev/topic/1379/how-can-loliscript-satisfy-two-conditions-n-1-and-n-5/2
      3- https://forum.openbullet.dev/topic/1542/urgent-using-utility-function-how-can-i-sort-balance-in-separate-file/3

      posted in Questions
      Br4uN
    • RE: Translate GO language for RSA Encryption

      @RandomFag
      show some results example from your GO code and let see if I could replicate it in OB

      posted in Questions
      Br4uN
    • RE: ANY OB VERSION SUPPORT .loliX Except 1.2.0

      @marouaneechodni
      https://forum.openbullet.dev/topic/457/lolix-to-loli-or-anom/2

      posted in Questions
      Br4uN
    • RE: How to create function - replace word ?

      @kfederic

      FUNCTION Replace "Hello" "Bye" "<MyParse>" -> VAR "RESULT"
      posted in Questions
      Br4uN
    • RE: HMAC-256 Help

      @ManoPlayBRL Because you want result in digest I guess, and it was the faster and easy way for me 😁 to replicate your py code. I belive google has a better answer than me 🤦 sorry

      posted in Questions
      Br4uN
    • RE: HMAC-256 Help

      @ManoPlayBRL It won't be the best way but it work ^__^

      #FUNCTION_SUP FUNCTION Hash SHA256 "{\"user\":\"[email protected]\",\"meta\":{\"event\":\"login\",\"store\":\"android\",\"adid\":\"72196d1d-4027-468b-b920-9611c5daff07\",\"platform\":\"1.13.2\",\"tracking\":\"/\"}}" -> VAR "SUP" 
      UTILITY Conversion HEX BASE64 "<SUP>" -> VAR "Result" 
      #UTILITY_Result2 UTILITY Conversion UTF8 BIN "x-date: Thu, 01 Jan 1970 00:01:15 GMT+00:00" -> VAR "Result2" 
      #UTILITY_Result3 UTILITY Conversion UTF8 BIN "digest: SHA-256=" -> VAR "Result3" 
      #UTILITY_Result4 UTILITY Conversion BIN BASE64 "<Result2>00001010<Result3>" -> VAR "Result4" 
      #FUNCTION_msg FUNCTION Base64Encode "<Result>" -> VAR "msg" 
      #FUNCTION_HMAC FUNCTION HMAC SHA256 "25jnMhmRv3m19r7o4Dzv" InputBase64=TRUE HmacBase64=TRUE "<Result4><msg>" -> VAR "FINAL_Result" 
      
      

      HMAC.png

      posted in Questions
      Br4uN
    • RE: SHA-256 Encode

      @ManoPlayBRL

      #FUNCTION_Hash256 FUNCTION Hash SHA256 "{\"user\":\"[email protected]\",\"meta\":{\"event\":\"login\",\"store\":\"android\",\"adid\":\"72196d1d-4027-468b-b920-9611c5daff07\",\"platform\":\"1.13.2\",\"tracking\":\"/\"}}" -> VAR "data" 
      UTILITY Conversion HEX BASE64 "<data>" -> VAR "Result"
      

      DigestLoli.png

      posted in Python
      Br4uN
    • RE: SHA-256 Encode

      @ManoPlayBRL OK here we go follow this guide to make it work 👉 https://forum.openbullet.dev/topic/110/use-the-ironpython-standard-modules-and-load-other-modules

      BEGIN SCRIPT IronPython
      import sys
      sys.path.append('./src')
      import hashlib
      import base64
      SUP = hashlib.sha256('{"user":"[email protected]","meta":{"event":"login","store":"android","adid":"72196d1d-4027-468b-b920-9611c5daff07","platform":"1.13.2","tracking":"/"}}'.encode("UTF8")).digest()
      SUP2 = (base64.b64encode(SUP))
      END SCRIPT -> VARS "SUP2"
      

      PythonDigest.png

      posted in Python
      Br4uN