Coder Social home page Coder Social logo

Comments (10)

kapps7 avatar kapps7 commented on August 24, 2024

Same here. iPhone 4 ios 6.1. No luck. Have tried various browsers.

from wifisms.

Tatsh avatar Tatsh commented on August 24, 2024

Copying from issue #30

It crashes on start. Crash log here: https://gist.github.com/Tatsh/625fabe99fe1e7acceb5

Get a crash dump. They are on the filesystem as plist files.

from wifisms.

SirKnightBJ avatar SirKnightBJ commented on August 24, 2024

Doesn't work on my iPhone 4 iOS 6.1. :(

from wifisms.

andrelec1 avatar andrelec1 commented on August 24, 2024

Lyphone5:~ root# sudo -u mobile /User/Library/WifiSMS/WifiSMS "$*" > /dev/null
dyld: Symbol not found: OBJC_CLASS$_CKSMSService
Referenced from: /User/Library/WifiSMS/WifiSMS
Expected in: flat namespace
in /User/Library/WifiSMS/WifiSMS
Trace/BPT trap: 5

from wifisms.

SirKnightBJ avatar SirKnightBJ commented on August 24, 2024

I'm Not 100% sure what you're trying to tell us andrelec1 haha. Who exactly are you responding to and in regards to what? Is what you are saying a fix or the issue itself? Please forgive my layman like questions, but I'm clearly in the dark.

from wifisms.

Tatsh avatar Tatsh commented on August 24, 2024

@andrelec1 we have the same error. So we know it's probably that Apple has changed the name of the class that this was hacking over.

ChatKit framework is not anywhere on my iPhone in an easily recognisable sense. This is what class-dump shows for MobileSMS.app grep'ing for CK.

@protocol CKTranscriptComposeDelegate <NSObject>
    CKMessagesController *_messagesController;
@interface CKMessagesController : _AudioServicesAddSystemSoundCompletion <UISplitViewControllerDelegate, MFMailComposeViewControllerDelegate, UIActionSheetDelegate, UIPopoverControllerDelegate, CKTranscriptComposeDelegate, UINavigationControllerDelegate, UIAlertViewDelegate>
    CKConversationListController *_conversationListController;
    CKTranscriptController *_transcriptController;
    CKConversation *_currentConversation;
@interface CKBlankTranscriptController : _AudioServicesAddSystemSoundCompletion

VoiceMemos.app looks like it has a forward declaration to _CKSMSComposeControllerClass. That's about it.

Connecting to MobileSMS with cycript:

cy# _CK
_CKPriorityQueue    _CKTextBalloonView  _CKTiledTextView
cy# CK
Display all 142 possibilities? (y or n)
CKABNewPersonViewController                   CKDeletedMessagePart                          CKMessagePartURLProtocol                      CKSyncController
CKABUnknownPersonViewController               CKDispatchQueue                               CKMessageStandaloneComposition                CKTextBalloonContentView
CKAVMediaObject                               CKDraftManager                                CKMessageStatusCell                           CKTextBalloonView
CKActionSheetManager                          CKEffectsWindow                               CKMessagesAppPreferredServiceManager          CKTextContentView
CKAnimatedImage                               CKEntity                                      CKMessagesController                          CKTextContentViewDelegate
CKAnimatedImageBalloonView                    CKEntityCell                                  CKModalTranscriptController                   CKTextInteractionDelegateconcret
CKAnimatedImageMediaObject                    CKEntryField                                  CKMultiCache                                  CKTextInteractionView
CKAnimationTimerObserver                      CKErrorMediaObject                            CKMultiDict                                   CKTextMessagePart
CKAtomListView                                CKFixedImageMediaObject                       CKOverlayViewProtocol                         CKTiledTextView
CKAudioMediaObject                            CKGenericAttachment                           CKPassbookMediaObject                         CKTimedQueue
CKBalloonView                                 CKGenericFileBalloonView                      CKPopoverManager                              CKTimedQueueObject
CKBalloonViewActionDelegate                   CKHTMLHelper                                  CKPreferredServiceManager                     CKTimestampCell
CKBalloonViewDelegate                         CKIMComposeRecipient                          CKPreviewManager                              CKTranscriptBubbleData
CKBlankTranscriptController                   CKIMDBMessage                                 CKPreviewableAttachment                       CKTranscriptButtonView
CKCache                                       CKIMEntity                                    CKProgressBar                                 CKTranscriptButtonViewDelegate
CKCardMediaObject                             CKIMMessage                                   CKQLPreviewController                         CKTranscriptCell
CKClientComposeConversation                   CKImageAnimationTimer                         CKRecipientGenerator                          CKTranscriptComposeDelegate
CKClientComposeEntity                         CKImageBalloonView                            CKRecipientListView                           CKTranscriptController
CKClientComposeMessage                        CKImageData                                   CKRecipientSelectionView                      CKTranscriptHeaderView
CKClientComposeServer                         CKInteractionProxiedView                      CKRecipientTableViewCell                      CKTranscriptStatusController
CKColoredBalloonView                          CKInteractiveLabel                            CKRichContentView                             CKTranscriptTableView
CKComposeRecipientView                        CKLRUCache                                    CKSMSCompose                                  CKTranscriptToolbarView
CKCompressibleImageMediaObject                CKLabelledAtomList                            CKSMSComposeController                        CKTranscriptTransaction
CKContentEntryBridge                          CKLazyTextView                                CKSMSComposeInternal                          CKTypingIndicatorCell
CKContentEntryBridgeClient                    CKLinksController                             CKSMSComposeQueuingRemoteViewControllerProxy  CKTypingIndicatorView
CKContentEntryView                            CKLocationMediaObject                         CKSMSComposeRemoteViewController              CKUIBehavior
CKConversation                                CKMediaObject                                 CKSMSComposeRemoteViewControllerDelegate      CKUnknownMediaObject
CKConversationList                            CKMediaObjectManager                          CKSMSComposeViewServiceController             CKUnknownMessagePart
CKConversationListCell                        CKMediaObjectMessagePart                      CKSelectedMessageCellView                     CKVCalMediaObject
CKConversationListController                  CKMessage                                     CKSendingProgressView                         CKVCardMediaObject
CKConversationListNewMessageCell              CKMessageCell                                 CKServiceCell                                 CKVideoMediaObject
CKConversationSearcher                        CKMessageComposition                          CKSettingsMessagesController                  CKWBMPImageData
CKConversationSearcherDelegate                CKMessageEncodingInfo                         CKSpotlightQuery                              CKWBMPImageMediaObject
CKDBMessage                                   CKMessageEntryView                            CKSpotlightSearchResult                       CKWebviewBasedContentEntryBridge
CKDashedLineView                              CKMessagePart                                 CKSubjectAndTextBalloonView                   
CKDefaultPreferredServiceManager              CKMessagePartComposeResourcePool              CKSummaryLabel                                

Looks like _CKSMSService is gone.

from wifisms.

christopherglennreed avatar christopherglennreed commented on August 24, 2024

same issues here . any time frame for fix?

from wifisms.

eLyx avatar eLyx commented on August 24, 2024

I have the same problem, the port 8080 is not open. (nmap iphone device)

IPhone: 4S firmware 6.1.1 with Evasi0n Jailbreak.

You think someone gonna update the project?

from wifisms.

solariscoder avatar solariscoder commented on August 24, 2024

Crash log

AutoSubmitted SysInfoCrashReporterKey c738c48c1c0a5745d2e97874ab6b1d981b2bb00e bug_type 109 description Incident Identifier: 4EC0F29E-1D63-40ED-A6E3-A60804A68B19 CrashReporter Key: c738c48c1c0a5745d2e97874ab6b1d981b2bb00e Hardware Model: iPhone5,1 Process: WifiSMS [1055] Path: /User/Library/WifiSMS/WifiSMS Identifier: WifiSMS Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1]

Date/Time: 2013-02-20 15:56:08.145 -0800
OS Version: iOS 6.1 (10B143)
Report Version: 104

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x00000000e7ffdefe
Crashed Thread: 0

Dyld Error Message:
Symbol not found: OBJC_CLASS$_CKSMSService
Referenced from: /User/Library/WifiSMS/WifiSMS
Expected in: flat namespace
in /User/Library/WifiSMS/WifiSMS
Dyld Version: 212.3.1

Binary Images:
0x44000 - 0x5afff +WifiSMS armv7 <3c2687ce76223d0cb4a80efcf141a271> /User/Library/WifiSMS/WifiSMS
0x2fe29000 - 0x2fe49fff dyld armv7s <44ac9ef7642f3ba7943f6451887d3af5> /usr/lib/dyld
0x3240f000 - 0x324f5fff AVFoundation armv7s <56f22385ccb73e31863f1fa9e0b621dd> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x324f6000 - 0x324f6fff Accelerate armv7s <f4e8c4c464953429ab6bd3160aadd176> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x324f7000 - 0x32634fff vImage armv7s <49d3cf19d0a23f4d836fc313e5fd6bab> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x32635000 - 0x32721fff libBLAS.dylib armv7s <584e045442be39fc847ffe1a5e4c99b2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x32722000 - 0x329d8fff libLAPACK.dylib armv7s <30a3e7dd8c603a9d81b5e42704ba5971> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x329d9000 - 0x32a31fff libvDSP.dylib armv7s <936354553eb93d2dafa76ffcad65f9b7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x32a32000 - 0x32a44fff libvMisc.dylib armv7s <5fae8715a0403315bb1991b79677f916> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x32a45000 - 0x32a45fff vecLib armv7s <30275ee8819331229ba21256d7b94596> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x32a46000 - 0x32a57fff Accounts armv7s <df3255c62b0239f4995bc14ea79f106b> /System/Library/Frameworks/Accounts.framework/Accounts
0x32a59000 - 0x32abdfff AddressBook armv7s <ea949de12ca93a6a96ef80d0cb4d9231> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x32abe000 - 0x32b78fff AddressBookUI armv7s <b25d9a6111d53dc48d8e5e9a30c362ad> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x32cc5000 - 0x32f4efff AudioToolbox armv7s <8b8ef592d59f371783933b446a3e0e67> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x32f4f000 - 0x33014fff CFNetwork armv7s <ef41814d8641319c96cdeb1264d2d150> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x33015000 - 0x3306bfff CoreAudio armv7s <19aa715b19a93a5c8563dbc706e899be> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x3307f000 - 0x33237fff CoreData armv7s <dee36bfc0c213492983c73d7bd83a27d> /System/Library/Frameworks/CoreData.framework/CoreData
0x33238000 - 0x3336afff CoreFoundation armv7s <bd8e6c9f94b43e3d9af96a0f03ff3011> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x3336b000 - 0x334a4fff CoreGraphics armv7s <ef057fe1c715314cabf133ec26fa718c> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x336e1000 - 0x33796fff CoreImage armv7s <7d7cd7998a113ed9b483e7dc9f388b05> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x33797000 - 0x337effff CoreLocation armv7s <94c4fa04ba3c3f5e9d17d75074985ce9> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x33824000 - 0x33889fff CoreMedia armv7s <526b25ed6f4e31b790553bd80d46fec7> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x3388a000 - 0x33912fff CoreMotion armv7s <d71e40c801423c9cbb31a188120a1c58> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x33913000 - 0x33969fff CoreTelephony armv7s <bdf5f32e89073773a7fdbcc87fc6b412> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x3396a000 - 0x339ccfff CoreText armv7s <a01bc990cb483e828f7c3e08cd446daf> /System/Library/Frameworks/CoreText.framework/CoreText
0x339cd000 - 0x339dcfff CoreVideo armv7s <851591a704dc344aa2fc397094b4c622> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x339dd000 - 0x33a91fff EventKit armv7s <6282cd57cf6233359489a46554a5bb15> /System/Library/Frameworks/EventKit.framework/EventKit
0x33b61000 - 0x33d24fff Foundation armv7s <0f73c35ada563c0bb2ce402d282faefd> /System/Library/Frameworks/Foundation.framework/Foundation
0x33edf000 - 0x33f28fff IOKit armv7s <4e5e55f27bbb35bab7af348997bfac17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x33f29000 - 0x34101fff ImageIO armv7s <e04300f6e6b232ce8a02139d8f18dfdc> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x3417b000 - 0x34315fff MediaPlayer armv7s <3328573c20643b02806559249c749793> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x34316000 - 0x34590fff MediaToolbox armv7s <1b36b1b41eca35989d2e822240a769cf> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x34591000 - 0x34617fff MessageUI armv7s <2fbfe798afe130cba7360b49d0ad487c> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x34618000 - 0x34671fff MobileCoreServices armv7s <b0d1162a8ab03529bb90e416895b568a> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x34761000 - 0x34768fff OpenGLES armv7s <c9c8f7cbfbe5397382286b878bdf143c> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x3476a000 - 0x3476afff libCVMSPluginSupport.dylib armv7s <b7d1ddfeb0db36d6af7293fa625b12be> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x3476e000 - 0x34770fff libCoreVMClient.dylib armv7s <8bcac434962435a895fa0b0a3a33b7a1> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x34771000 - 0x34775fff libGFXShared.dylib armv7s <272a9de67f6632c3aebbe2407cfe716b> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x34776000 - 0x347b5fff libGLImage.dylib armv7s <3a444257935236fab123e46e617c7a8d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x34eb5000 - 0x34fc9fff QuartzCore armv7s <b28fd354be3c38a2965e6368fa35e0c7> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x34fca000 - 0x35016fff QuickLook armv7s <2350b507fe1b3a1a94d2824e34649b36> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x35017000 - 0x35045fff Security armv7s <e1fcc8913eba360c868f51558a01cf24> /System/Library/Frameworks/Security.framework/Security
0x350c4000 - 0x35103fff SystemConfiguration armv7s <0fb8d4a2fa8f30ce837e068a046e466b> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x35106000 - 0x35659fff UIKit armv7s <62bee9294ca13738bd7ff14365dc8561> /System/Library/Frameworks/UIKit.framework/UIKit
0x3565a000 - 0x35699fff VideoToolbox armv7s <57487f6e3c38304ab0aa14dd16043f5c> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x3592f000 - 0x3593bfff AccountSettings armv7s <c4b7436e8ea33ffd9805905f262e4479> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x35982000 - 0x35985fff ActorKit armv7s <3aa66a29d9343626baa9d63d1a6efc14> /System/Library/PrivateFrameworks/ActorKit.framework/ActorKit
0x35987000 - 0x3598afff AggregateDictionary armv7s <6916a617625e3800bbb75a34294f4d13> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x35a73000 - 0x35a86fff AirTraffic armv7s <e2261ffe1d803bc6bbed23191c848bad> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
0x35db6000 - 0x35df1fff AppSupport armv7s <7d6122cb42363dc981247c926e637a34> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x35df2000 - 0x35e16fff AppleAccount armv7s <668e780f91163aaca1c36294d702ae50> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x35e23000 - 0x35e30fff ApplePushService armv7s <4638fab5719a3007beca5a798aa69e91> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x35e64000 - 0x35e6dfff AssetsLibraryServices armv7s <ec78d21573a23c34b6cec05ba56928f1> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x35e6e000 - 0x35e86fff AssistantServices armv7s <0ef6efe82e7f3ef0855ea5fa5006285c> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x35e9c000 - 0x35eb3fff BackBoardServices armv7s <36f93cef9f6830f490fe00818bcffa2e> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x35ebd000 - 0x35ee1fff Bom armv7s <f35bf1c1b24a3742847383801ac37505> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x35f61000 - 0x35f68fff CaptiveNetwork armv7s <e308f6a4f4bf3749b56bd6ff4dd8b30a> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x35f69000 - 0x36033fff Celestial armv7s <a2f7438cb5163307a04d78bc2b8a86a9> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x36040000 - 0x36044fff CertUI armv7s <98e5a166bb473fa9b2840dfdad00580a> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x36045000 - 0x360e9fff ChatKit armv7s <91c5c81aeb5536f299b8fe01e76f2d6a> /System/Library/PrivateFrameworks/ChatKit.framework/ChatKit
0x36104000 - 0x36108fff CloudRecents armv7s <ae14488a25eb33af862afd1e677dedf1> /System/Library/PrivateFrameworks/CloudRecents.framework/CloudRecents
0x36117000 - 0x3611cfff CommonUtilities armv7s <eb0b7e85b57e32f38dc498c0ee97aa7e> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x3611d000 - 0x36170fff CommunicationsSetupUI armv7s <657a34c75bd73153be67915d56cdde54> /System/Library/PrivateFrameworks/CommunicationsSetupUI.framework/CommunicationsSetupUI
0x361a1000 - 0x361d1fff ContentIndex armv7s <7a304e48f6213864820081df620939e9> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x363e2000 - 0x363e3fff CoreSurface armv7s <55826212d8b4352b87d80f93bc9b25c6> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
0x36450000 - 0x36455fff CrashReporterSupport armv7s <3b190badb14f3771b353fcd829719c80> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x36456000 - 0x36492fff DataAccess armv7s <7dcaa9fce0213cbead487fcd0980bd59> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x36627000 - 0x36639fff DataAccessExpress armv7s <05ed021492f2394f9d43216d8b963665> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x36678000 - 0x36679fff DataMigration armv7s <5e7169ad01853bd0ba0f66648a67a010> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x3667c000 - 0x36695fff DictionaryServices armv7s <27298e235f2c35938e1033517b1196a7> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x3669d000 - 0x366b5fff EAP8021X armv7s <bff91efbc6ba369089b699bb50191905> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x366b6000 - 0x366c3fff FTAWD armv7s <f282fa3582bb31419825e5308ac9aed0> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x366c4000 - 0x366c8fff FTClientServices armv7s <c158c4281a2e31d7913d9f8b0fb4417c> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x366c9000 - 0x36707fff FTServices armv7s <71ca9253aee730eca6c4ca3210861a2c> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x36708000 - 0x36b1bfff FaceCoreLight armv7s <432cbaeb84743441b9286532bc36c96d> /System/Library/PrivateFrameworks/FaceCoreLight.framework/FaceCoreLight
0x36d13000 - 0x36d1ffff GenerationalStorage armv7s <4e1afa8de682332ba6a042a6000c636e> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x36d20000 - 0x36e19fff GeoServices armv7s <f2a20efae86a30cb8210550de0280ce7> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x36e1a000 - 0x36e25fff GraphicsServices armv7s <44b33c403523309c9e930818c7fced34> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x36e94000 - 0x36f0ffff HomeSharing armv7s <137c1fbc6a843d369038348255635111> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x36f10000 - 0x36f1afff IAP armv7s <f43af100e43c3d1fac19a86cb7665c18> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x36f68000 - 0x36fd1fff IMAVCore armv7s <78a21c381d173ce6b17cee820dd2dbf7> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
0x36fd2000 - 0x3704afff IMCore armv7s <a212f1303a4f3d47aaf21078f172e4bf> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x3709f000 - 0x370d7fff IMDPersistence armv7s <50bf5baed7f7396ab507f899b1eb42ad> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x37111000 - 0x3715dfff IMFoundation armv7s <55151f53b10934c3a5faac54e354f3f1> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x37164000 - 0x37165fff IOAccelerator armv7s <832913083f7f347fba1340263ff13b52> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x37166000 - 0x3716bfff IOMobileFramebuffer armv7s <828a36a2325738bb8f2d4b97730d253a> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x3716c000 - 0x37170fff IOSurface armv7s <9925fbc4a08d3a17b72ac807cbbba8ba> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x371b5000 - 0x371b9fff IncomingCallFilter armv7s <8624065e862b3cc7b03b6635181ce2cf> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x371ba000 - 0x37361fff JavaScriptCore armv7s <f7be721eee903a93a7de361e5627445e> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
0x37392000 - 0x373c8fff MIME armv7s <3f8dc502266237c6809c4d33b6e359ad> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x37407000 - 0x37411fff MailServices armv7s <737ace3c1c7c3ec6923095f3beadb4b2> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x3742d000 - 0x37485fff ManagedConfiguration armv7s <b147c2d6f0283d988099706a2a404280> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x37486000 - 0x3748bfff Marco armv7s <53ab26b3197135a781d55819fd80f032> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x3749c000 - 0x37512fff MediaControlSender armv7s <29ff7ec2b02d36ec8bf6db33c3a4ba8e> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
0x37513000 - 0x3751cfff MediaRemote armv7s <0dc7c7c324d33af8b2f7d57f41123de9> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x3758f000 - 0x37648fff Message armv7s <9ebc49dae1293bf8bbad64153932c756> /System/Library/PrivateFrameworks/Message.framework/Message
0x37651000 - 0x37653fff MessageSupport armv7s <874f2566017b3931b4595c63d6f77098> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x3765c000 - 0x37689fff MobileAsset armv7s <e3217ead58d5390395de360b3ca3a10a> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x3768d000 - 0x376abfff MobileBackup armv7s <a50d49f65b863b759da41e238a8a9ac0> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x376b6000 - 0x376c5fff MobileDeviceLink armv7s <ed43d4db46a43db0976eeac5f3bc77a1> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x376c6000 - 0x376cdfff MobileIcons armv7s <aaf5cfd5f8273d10803d0349905b07cd> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x376ce000 - 0x376d1fff MobileInstallation armv7s <7cbe167946123bbea56ae58208e09762> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x376d2000 - 0x376d8fff MobileKeyBag armv7s <5c7d50e11eb537ae89ea12cb7ddd3935> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x37711000 - 0x37734fff MobileSync armv7s <8ea08ca56ead3d77bba046811a917f79> /System/Library/PrivateFrameworks/MobileSync.framework/MobileSync
0x37735000 - 0x37738fff MobileSystemServices armv7s <5796fff2895f38e4b0f844269d4fbae5> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x37750000 - 0x37759fff MobileWiFi armv7s <e9ae11c07476390d9598c861658cee7d> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x37773000 - 0x378b7fff MusicLibrary armv7s <057b076c74fd31b590bccc9b64d7f5cb> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x378cf000 - 0x378e8fff Notes armv7s <de760fe287ee3346b61c4f4e701278f3> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x378e9000 - 0x378ebfff OAuth armv7s <8e91174312e43ca9ac07d91d16b32d15> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x38010000 - 0x38034fff OpenCL armv7s <87637dacbb3c3e029120369438e96fcf> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
0x38396000 - 0x383b3fff PersistentConnection armv7s <c5164e016fa6340fbce9251278385105> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x38610000 - 0x38648fff Preferences armv7s <a096fb6fdd11373e812c8b78acdcdfa7> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x38649000 - 0x38671fff PrintKit armv7s <7109f645a9ca3a4997b4172aed228723> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
0x38672000 - 0x386e6fff ProofReader armv7s <e391e8d141c5352d978e5fde23afaaad> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x386e7000 - 0x386effff ProtocolBuffer armv7s <edc3f72bf38c3d81954ac85f489a17e8> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x3870c000 - 0x38764fff SAObjects armv7s <8d28d67a0cfe3b5db861228361a27d2f> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x3882b000 - 0x3883cfff SpringBoardServices armv7s <5b94e9a529753052acde16c21e9d2566> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x3889e000 - 0x38979fff StoreServices armv7s <e465f24460ff3764b4fc95ebd44b2fe3> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x389c7000 - 0x389c9fff TCC armv7s <95c2aa492cc03862bd7bbfae6fa62b1b> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x389ca000 - 0x389e7fff TelephonyUI armv7s <2ed4ebd30fa3375fa4eddb13573855d2> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
0x389e8000 - 0x389f5fff TelephonyUtilities armv7s <aa759d908b903f978ab6803b7947e524> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x38e4c000 - 0x38e5dfff ToneLibraryNoUI armv7s <d12746ba6fd238d7ac61cdc9750e9984> /System/Library/PrivateFrameworks/ToneLibraryNoUI.framework/ToneLibraryNoUI
0x38e7a000 - 0x38f1afff UIFoundation armv7s <e3a40cee28653c4485a4918016ff2b8e> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x391e9000 - 0x391fffff VoiceServices armv7s <f00d5d73bf3f3acfb7d0b1b0447f071b> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x39216000 - 0x39235fff WebBookmarks armv7s <ab55332c13da33fd825ea6204338fe19> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x39236000 - 0x39b66fff WebCore armv7s <f99b83bec11b331ab69194120917a7df> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x39b67000 - 0x39c43fff WebKit armv7s <02c32fdddbdc39b1848b721658a2fa51> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
0x39c51000 - 0x39ce6fff WirelessDiagnostics armv7s <838b3050869b39bc87d1cbc4defd0738> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x39cee000 - 0x39cf5fff XPCObjects armv7s <e6846a96a21d382f9fffd6a4536c0aa7> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
0x39e48000 - 0x39e83fff iCalendar armv7s <bcc081bffdae3daea0f7d7db18ed80e8> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x39f99000 - 0x39fd1fff iTunesStore armv7s <10c8c7e5c9f43f75af5b30fc2389c1a2> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x3a62a000 - 0x3a651fff libAWDProtobufFacetimeiMessage.dylib armv7s <32e9c63a390b34b2bd8afe8f0536508d> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
0x3a791000 - 0x3a7a4fff libAWDProtobufWifi.dylib armv7s <47655e55a332388b80173c496e821e8d> /usr/lib/libAWDProtobufWifi.dylib
0x3a85f000 - 0x3a865fff libAccessibility.dylib armv7s <9111bc894a4f3ef683f5ef4d699a861b> /usr/lib/libAccessibility.dylib
0x3a866000 - 0x3a87cfff libCRFSuite.dylib armv7s <770ebb2f7d9a35749e6da5d1980c244f> /usr/lib/libCRFSuite.dylib
0x3a894000 - 0x3a8a0fff libMobileGestalt.dylib armv7s <efddaaea8d87321a80d4a6d3f9607a80> /usr/lib/libMobileGestalt.dylib
0x3a8b2000 - 0x3a8b2fff libSystem.B.dylib armv7s <12daef214fd234158028c97c22dc5cca> /usr/lib/libSystem.B.dylib
0x3a9d4000 - 0x3a9e0fff libbsm.0.dylib armv7s <0f4a8d65b05a364abca1a97e2ae72cb5> /usr/lib/libbsm.0.dylib
0x3a9e1000 - 0x3a9eafff libbz2.1.0.dylib armv7s <f54b70863d9c3751bb59253b1cb4c706> /usr/lib/libbz2.1.0.dylib
0x3a9eb000 - 0x3aa36fff libc++.1.dylib armv7s <3beff5a5233b3f51ab2fc748b68e9519> /usr/lib/libc++.1.dylib
0x3aa37000 - 0x3aa4afff libc++abi.dylib armv7s <f47a5c7bc24c3e4fa73f11b61af635da> /usr/lib/libc++abi.dylib
0x3aa7b000 - 0x3ab68fff libiconv.2.dylib armv7s <81d6972465103fa3b85b4125f0ad33f1> /usr/lib/libiconv.2.dylib
0x3ab69000 - 0x3acb2fff libicucore.A.dylib armv7s <642482cfc34a3a3b97bd731258dcdc6a> /usr/lib/libicucore.A.dylib
0x3acba000 - 0x3acbafff liblangid.dylib armv7s <ffb53baa33ba3642a55737311f17a672> /usr/lib/liblangid.dylib
0x3acbd000 - 0x3acc4fff liblockdown.dylib armv7s <dbd4f278c71b3f219da3e895b1f6ac80> /usr/lib/liblockdown.dylib
0x3afa5000 - 0x3afbafff libmis.dylib armv7s <8f0712b99e8e3f5e998f0240f75bb5ba> /usr/lib/libmis.dylib
0x3afe3000 - 0x3b0e1fff libobjc.A.dylib armv7s <1d499765d38c3c8fa92b363f529a02dd> /usr/lib/libobjc.A.dylib
0x3b137000 - 0x3b1a4fff libprotobuf.dylib armv7s <92c079ab2cb23caf931684178574ec07> /usr/lib/libprotobuf.dylib
0x3b1a5000 - 0x3b1bafff libresolv.9.dylib armv7s <3f7be9d397d63b8e931d21bd5f49b0eb> /usr/lib/libresolv.9.dylib
0x3b1df000 - 0x3b265fff libsqlite3.dylib armv7s <758898189dca32a5a19e5200b8952110> /usr/lib/libsqlite3.dylib
0x3b266000 - 0x3b2b2fff libstdc++.6.dylib armv7s <249e8ca1717b370287bb556bbd96e303> /usr/lib/libstdc++.6.dylib
0x3b2b3000 - 0x3b2d9fff libtidy.A.dylib armv7s <96b463f0ffa0344699fce4d48aa623bc> /usr/lib/libtidy.A.dylib
0x3b2dd000 - 0x3b38afff libxml2.2.dylib armv7s <e87724e212573773a60bc56815cec706> /usr/lib/libxml2.2.dylib
0x3b38b000 - 0x3b3abfff libxslt.1.dylib armv7s <c52fbe01ce7b35c799630e97e8f1318b> /usr/lib/libxslt.1.dylib
0x3b3ac000 - 0x3b3b8fff libz.1.dylib armv7s <b64a5c1989ba3ba4aafae83d841f9496> /usr/lib/libz.1.dylib
0x3b3b9000 - 0x3b3bcfff libcache.dylib armv7s <911ce99a94623ef1ae1ea786055fd558> /usr/lib/system/libcache.dylib
0x3b3bd000 - 0x3b3c3fff libcommonCrypto.dylib armv7s <33140a5fa3fb3e5e8c6bb19bc0e21c5c> /usr/lib/system/libcommonCrypto.dylib
0x3b3c4000 - 0x3b3c6fff libcompiler_rt.dylib armv7s <cd17f0ee3dbc38f99910d12a6056bf5a> /usr/lib/system/libcompiler_rt.dylib
0x3b3c7000 - 0x3b3ccfff libcopyfile.dylib armv7s <5e733170766430eeaa4e7784e3c7555c> /usr/lib/system/libcopyfile.dylib
0x3b3cd000 - 0x3b403fff libcorecrypto.dylib armv7s <a15c807dcb003ad69810546a578774d9> /usr/lib/system/libcorecrypto.dylib
0x3b404000 - 0x3b414fff libdispatch.dylib armv7s <247a388103633e17b24be038eac612c0> /usr/lib/system/libdispatch.dylib
0x3b415000 - 0x3b416fff libdnsinfo.dylib armv7s <f873dd712561350096b9452bf1fc4078> /usr/lib/system/libdnsinfo.dylib
0x3b417000 - 0x3b418fff libdyld.dylib armv7s <15676e2ee1423f598907ff49fcede85b> /usr/lib/system/libdyld.dylib
0x3b419000 - 0x3b419fff libkeymgr.dylib armv7s <b0a1a911d4853feba44133e9ce499bc9> /usr/lib/system/libkeymgr.dylib
0x3b41a000 - 0x3b41ffff liblaunch.dylib armv7s <69dd64aba1413e75967cd4ad0afa2c15> /usr/lib/system/liblaunch.dylib
0x3b420000 - 0x3b423fff libmacho.dylib armv7s <5905b311c6fb376388e56a991bb3193d> /usr/lib/system/libmacho.dylib
0x3b424000 - 0x3b425fff libremovefile.dylib armv7s <b40e964d7c563296b38625bc7082d6a8> /usr/lib/system/libremovefile.dylib
0x3b426000 - 0x3b426fff libsystem_blocks.dylib armv7s <77a9976b82b73796a0bbc9783929a1e7> /usr/lib/system/libsystem_blocks.dylib
0x3b427000 - 0x3b4adfff libsystem_c.dylib armv7s <11bcf1060ec63c8b909a452e6f79be08> /usr/lib/system/libsystem_c.dylib
0x3b4ae000 - 0x3b4b4fff libsystem_dnssd.dylib armv7s <94fab309ed9b35cdbc075cdda221bc70> /usr/lib/system/libsystem_dnssd.dylib
0x3b4b5000 - 0x3b4cdfff libsystem_info.dylib armv7s <195d8eeb7c3f31bd916c0b5611abc0e7> /usr/lib/system/libsystem_info.dylib
0x3b4ce000 - 0x3b4e4fff libsystem_kernel.dylib armv7s <79bea3ebfda132baba8f5b0ad6ab95f5> /usr/lib/system/libsystem_kernel.dylib
0x3b4e5000 - 0x3b501fff libsystem_m.dylib armv7s <faafc8292d4935c4a78233e1d0879e13> /usr/lib/system/libsystem_m.dylib
0x3b502000 - 0x3b510fff libsystem_network.dylib armv7s <137f48e279a83d7496659c8e3d3729d4> /usr/lib/system/libsystem_network.dylib
0x3b511000 - 0x3b518fff libsystem_notify.dylib armv7s <df14146497cb3fa0a002eedbed49da65> /usr/lib/system/libsystem_notify.dylib
0x3b519000 - 0x3b51afff libsystem_sandbox.dylib armv7s <85e91e99abc03db88eddc665424090b4> /usr/lib/system/libsystem_sandbox.dylib
0x3b51b000 - 0x3b51bfff libunwind.dylib armv7s <3b7ec561dbec3a199f09ea08a64e76ee> /usr/lib/system/libunwind.dylib
0x3b51c000 - 0x3b531fff libxpc.dylib armv7s <0562a59bdf8d3f7783e93f35d7e724a8> /usr/lib/system/libxpc.dylib

displayName
WifiSMS
name
WifiSMS
os_version
iPhone OS 6.1 (10B143)
system_ID

version
??? (???)
blame


from wifisms.

kapps7 avatar kapps7 commented on August 24, 2024

There is a another app called Remote messages but that isn't working at the moment. The developer is actively pursuing it though.

from wifisms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.