Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/byakugan/test/testPattern.c
24706 views
1
#include <stdlib.h>
2
#include "../msfpattern.h"
3
4
int main() {
5
char ownme[256];
6
7
msf_pattern_create(500, ownme);
8
printf("%s\n", ownme);
9
return (0);
10
}
11
12