Skip to content

Releases: danielpaulus/go-ios

v1.0.132

02 Aug 08:06
a1a147e
Compare
Choose a tag to compare
move initializing the buffered reader out of the loop (#440)

having it inside the loop destroys the reader after every iteration and it may contain
bytes at that point

v1.0.131

24 Jul 10:19
029c608
Compare
Choose a tag to compare
Added a buffered reader to dtx connections (#438)

* Added a buffered reader to dtx connections

* Simplified dtx decoder tests and added buffers to all readers in tests

v1.0.130

14 Jul 13:49
6cc0b7c
Compare
Choose a tag to compare
Rename argument  (#426)

Rename --enabletun to --userspace

v1.0.129

14 Jul 12:11
8c6f14e
Compare
Choose a tag to compare
Use a userspace TUN device to enable running commands without sudo (#…

v1.0.128

11 Jul 18:26
Compare
Choose a tag to compare
remove screenshotr and fix screenshot service

v1.0.127

11 Jul 14:53
dd33eed
Compare
Choose a tag to compare
fix memory leaks (#424)

* the defragmenter was not cleaned up completely after the last fragment

* clone strings from the XCTAttachments object

without cloning them the whole XCTAttachment and XCActivityRecord struct is being kept in memory

v1.0.126

08 Jul 22:11
Compare
Choose a tag to compare
ensure that the test listener channel gets closed only once

the close call happens in multiple places and we can not be sure that only
one of those methods is getting called during an execution

v1.0.125

02 Jul 20:55
19fb018
Compare
Choose a tag to compare

This adds ios17+ support.
It fixes the image auto command so all you should need to do is:

  1. run sudo ios tunnel start
  2. use go-ios as normal

v1.0.124

02 Jul 20:25
e04bd84
Compare
Choose a tag to compare
move unzip util to ios.Utils, fix image auto command for 17+ (#420)

v1.0.123

28 Jun 06:22
970aa04
Compare
Choose a tag to compare
send one packet at a time for the lockdown tunnel (#419)

the TUN interface often returned an error when an incomplete IPv6 packet was sent (one IPv6 packet + parts of the next one)
sending one packet at a time resolved this issue