no-dependencies
Here are 410 public repositories matching this topic...
-
Updated
Apr 27, 2020 - JavaScript
I don't know why but after trying the botnet on 2 of my machines, they don't have an ID set.
When a client is added byob does give it an ID but it doesn't exist anymore in my clients and I can't shell it.
Can't connect to any shell

Hello.
I've included the header file "catch.hpp" in my iOS application where I have a C++ part and defined #define CATCH_CONFIG_MAIN in a cpp file that I want to be tested.
I've also written a simple test:
int return_int(int arg){
return 1;
}
TEST_CASE( "Test", "[int]" ) {
REQUIRE(return_int(1) == 1);
REQUIRE(return_int(2) == 1);
}
But all I have are these two errors