Skip to content

Commit bfd10d3

Browse files
committed
docs: update README.md
1 parent aae2513 commit bfd10d3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ $ gxpc --help
1616
XPC sniffer
1717

1818
Usage:
19-
gxpc [flags]
19+
gxpc [spawn_args] [flags]
2020

2121
Flags:
22-
-b, --blacklist strings blacklist the following connections
22+
-b, --blacklist strings blacklist the following wildcard connections
2323
-f, --file string spawn the file
2424
-h, --help help for gxpc
2525
-i, --id string connect to device with ID
2626
-l, --list list available devices
2727
-n, --name string process name
28+
-o, --output string save output to this file
2829
-p, --pid int PID of wanted process (default -1)
2930
-r, --remote string connect to device at IP address
3031
```
@@ -33,4 +34,6 @@ Flags:
3334

3435
![Running against Signal](running_one.png)
3536

37+
![Getting airplane mode](airplane_mode.png)
38+
3639
If you do not pass `-i` flag, by default it will use USB device.

airplane_mode.png

78.6 KB
Loading

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ func main() {
260260
rootCmd.Flags().StringP("file", "f", "", "spawn the file")
261261
rootCmd.Flags().StringP("output", "o", "", "save output to this file")
262262

263-
rootCmd.Flags().StringSliceP("blacklist", "b", []string{}, "blacklist the following connections")
263+
rootCmd.Flags().StringSliceP("blacklist", "b", []string{}, "blacklist the following wildcard connections")
264264

265265
rootCmd.Flags().BoolP("list", "l", false, "list available devices")
266266
//rootCmd.Flags().BoolP("decode", "d", true, "try to decode(bplist00 or bplist15), otherwise print base64 of bytes")

0 commit comments

Comments
 (0)