Skip to content

Commit

Permalink
JSON names(keys) output are now strings (double-quoted as per http://…
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Sep 14, 2014
1 parent 69cf75a commit 34e4360
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/out-json.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ json_out_status(struct Output *out, FILE *fp, time_t timestamp, int status,
UNUSEDPARM(timestamp);

fprintf(fp, "{ ");
fprintf(fp, " ip: \"%u.%u.%u.%u\", ",
fprintf(fp, " \"ip\": \"%u.%u.%u.%u\", ",
(ip>>24)&0xFF, (ip>>16)&0xFF, (ip>> 8)&0xFF, (ip>> 0)&0xFF);
fprintf(fp, " ports: [ {port: %u, proto: \"%s\", status: \"%s\","
" reason: \"%s\", ttl: %u} ] ",
fprintf(fp, " \"ports\": [ {\"port\": %u, \"proto\": \"%s\", \"status\": \"%s\","
" \"reason\": \"%s\", \"ttl\": %u} ] ",
port,
name_from_ip_proto(ip_proto),
status_string(status),
Expand Down Expand Up @@ -101,9 +101,9 @@ json_out_banner(struct Output *out, FILE *fp, time_t timestamp,
UNUSEDPARM(timestamp);

fprintf(fp, "{ ");
fprintf(fp, " ip: \"%u.%u.%u.%u\", ",
fprintf(fp, " \"ip\": \"%u.%u.%u.%u\", ",
(ip>>24)&0xFF, (ip>>16)&0xFF, (ip>> 8)&0xFF, (ip>> 0)&0xFF);
fprintf(fp, " ports: [ {port: %u, proto: \"%s\", service: {name: \"%s\", banner: \"%s\"} } ] ",
fprintf(fp, " \"ports\": [ {\"port\": %u, \"proto\": \"%s\", \"service\": {\"name\": \"%s\", \"banner\": \"%s\"} } ] ",
port,
name_from_ip_proto(ip_proto),
masscan_app_to_string(proto),
Expand Down

0 comments on commit 34e4360

Please sign in to comment.