LuckySecTester.configure do |settings|
settings.nexploit_token = "test123"
end
and got this error:
Error creating repeater: Unexpected char 'F' at line 1, column 1 response: Failed to log in with provided credentials. (SecTester::Error)
from lib/sec_tester/src/scan.cr:226:7 in 'create_repeater'
from lib/sec_tester/src/scan.cr:15:19 in 'initialize'
from lib/sec_tester/src/scan.cr:14:5 in 'new:token'
from lib/sec_tester/src/test.cr:16:15 in 'initialize'
from lib/sec_tester/src/test.cr:15:5 in 'new'
I'm assuming the char F is probably from decoding some JSON or something. Thankfully it tells me "Failed to log in", so I knew exactly what the issue was. Not really a huge issue/priority here, but just wanted to report as a potential cleanup in the future or whatever.
Related: #6
I set a fake token
and got this error:
I'm assuming the
char F
is probably from decoding some JSON or something. Thankfully it tells me "Failed to log in", so I knew exactly what the issue was. Not really a huge issue/priority here, but just wanted to report as a potential cleanup in the future or whatever.