Hi,
If You like playing with Burp or Paros, probably You will get the idea
of :
/*
* ascii2html.c - simple payload coder
*/
#include <stdio.h>
int main(){
char ch;
printf("what to say:\n");
while((ch = getchar()) != NULL){
printf("&#%d",ch);
}
return 0;
}
and:
/*
* ascii2url.c - simple payload coder(2)
*/
#include <stdio.h>
int main(){
char ch;
printf("what to say:\n");
while((ch = getchar()) != NULL){
printf("%%%x",ch);
}
return 0;
}
Idea is simple, so maybe it will helps ;)
Enjoy o/
No comments:
Post a Comment
What do You think...?