Navigation

    OpenBullet

    OpenBullet

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

    spicy

    @spicy

    4
    Reputation
    29
    Posts
    32
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    spicy Follow

    Posts made by spicy

    • RE: Spice Random User Agent

      @mastercho try changing the net framework.

      posted in .NET (C#)
      spicy
    • RE: How to solve this cookie problem in Openbullet?

      Make a get request at first to get the cookies then send the post request. Should work on most sites.

      posted in Questions
      spicy
    • RE: ANALYZING SOURCE CODE

      @spicy said in ANALYZING SOURCE CODE:

      Left String:

      <span class = "profile_label">
      

      Right String

      Year </span>
      

      You can just add " Year" to the suffix and it should add it to the capture "* Year"

      If its not a constant you can just create multiple parses with Days, Month, Year whatever with the same variable name and disable create empty.

      posted in Questions
      spicy
    • RE: Add proxy in checker c# 🤔

      If you're using any type of xNet this should work:

      For HTTP/s

      request.Proxy = HttpProxyClient.Parse("totallyaproxy.com:8080");
      

      For Socks4

      request.Proxy = Socks4ProxyClient.Parse("totallyaproxy.com:8080");
      

      For Socks5

      request.Proxy = Socks5ProxyClient.Parse("totallyaproxy.com:8080");
      
      posted in .NET (C#)
      spicy
    • RE: Token jwt decrypt

      @Fairy Yes but he asked how to decode it at first.

      posted in General Discussion
      spicy
    • RE: What i can do about this token ? Token capture

      From what i can see is that the token is not loaded to the HTML, Maybe u need to load this on Selenium to parse it.

      posted in Questions
      spicy
    • RE: Token jwt decrypt

      If you wanna easily decode a JWT in OB Use this:

      PARSE "<JWT>" LR "." "." -> VAR "JWT" 
      
      FUNCTION Base64Decode "<JWT>" -> VAR "Decoded" 
      
      posted in General Discussion
      spicy
    • RE: Blackbox header

      This is a hard thing to reverse engineer but 80% can be bypassed by simple not using it on the param. Most of the sites don't check it that much.

      posted in General Discussion
      spicy
    • RE: ANALYZING SOURCE CODE

      Left String:

      <span class = "profile_label">
      

      Right String

      Year </span>
      

      You can just add " Year" to the suffix and it should add it to the capture "* Year"

      posted in Questions
      spicy
    • RE: Runner Skips All WordList Lines

      check if your wordlist has any blank/empty lines that might cause it to skip also you set the seperator as ; so make sue your worldlist is USER;PASS;URL

      posted in Questions
      spicy