@mastercho try changing the net framework.

spicy
@spicy
Posts made by 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.
-
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.
-
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");
-
RE: Token jwt decrypt
@Fairy Yes but he asked how to decode it at first.
-
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.
-
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"
-
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.
-
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"
-
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