Ausnahme gefangen: SSL certificate problem: certificate is not yet valid ๐Ÿ“Œ iOS Malicious Bit Hunter - A Malicious Plug-In Detection Eng ine For iOS Applications

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š iOS Malicious Bit Hunter - A Malicious Plug-In Detection Eng ine For iOS Applications


๐Ÿ’ก Newskategorie: IT Security Nachrichten
๐Ÿ”— Quelle: feedproxy.google.com


iOS Malicious Bit Hunter is a malicious plug-in detection engine for iOS applications. It can analyze the head of the macho file of the injected dylib dynamic library based on runtime, and can perform behavior analysis through interface input characteristics to determine the behavior of the dynamic library feature. The program does not rely on the jailbreak environment and can be used on the AppStore.


Whatโ€™s new feature

This is a new way to accurately identify the behavior of iOS malicious code. Based on the method of analyzing malicious code running in the memory based on the Mach-O format in the App, it can perform flexible behavior recognition for analysis and continuous tracking. This is a very accurate anti-plug-in defense method, including behaviors, variables, and highly obfuscated code (including ollvm), which has achieved very good results in our defense process.


How to use
  1. Use XCode open .xcodeproj file or create new static library project .
  2. Build Phases -> Compile Sources , add all *.c / *.mm file .
  3. command + B build .

The ios-malicious-bithunter had only one api: secinfo * Security_CoreFoundation(void);

Invoke example :

info = (secinfo *)malloc(sizeof(secinfo));

info->scan_result = (unsigned char * ) malloc(1024*1024);

memset(info->scan_result,0,1024*1024);

if(info == NULL)

{

goto RETURN;

}

info->is_plugScan = security_scanEngine((unsigned char *)info->scan_result);

Logic Priciple

The tool provides an API interface for obtaining externally match rules. It will analyze the behavior of jailbroken and repackaged dynamic libraries at runtime, mainly through static analysis of the MachO file format, through the Load Command and different segments Obtain the import table, export table, class name, function name, string and other information, and judge whether the dynamic library has been loaded into the memory through the memory map at runtime.



Detect demo result

We used our SDK to analyze tens of thousands of jailbreak dynamic libraries. These resources come from some public jailbreak plugins. Below are our current test results๏ผš

filename,rule

ALS.dylib,FAKEDEV_H

AWZ.dylib,FAKEDEV_H

CallAssist.dylib,FAKEDEV_H

EGrimaceTweak.dylib,FAKEDEV_H

Lynx.dylib,FAKEDEV_H

NZT.dylib,FAKEDEV_H

SystemInfo.dylib,FAKEDEV_H

YOY.dylib,FAKEDEV_H

fakephonelib.dylib,FAKEDEV_H

fakid.dylib,FAKEDEV_H

nt.dylib,FAKEDEV_H

AWZ.dylib,FAKEDEV_M

1feaks.dylib,FAKETOUCH

ATTweak.dylib,FAKETOUCH

BTC-Springboard.dylib,FAKETOUCH

Callofdutygarena.dylib,FAKETOUCH

Cercube.dylib,FAKETOUCH

EASimulateTower.dylib,FAKETOUCH

EPEventTweak.dylib,FAKETOUCH

EvilHunterTycoon.dylib,FAKETOUCH

FlyBirdRemoteControl.dylib,FAKETOUCH

GamePlayerUI.dylib,FAKETOUCH

HAWK.dylib,FAKETOUCH

HonkaiImpactTW.dylib,FAKETOUCH

HookedInc.dylib,FAKETOUCH

IdleFitnessGymTycoon.dylib,FAKETOUCH

JudeTaxi_jb.dylib,FAKETOUCH

LienQuanMobile.dylib,FAKETOUCH

P4UTweak.dylib,FAKETOUCH

PUBGMOBILEFREEiOSGodsCom.dylib,FAKETOUCH

ScarFalliOSGodsCom.dylib,FAKETOUCH

SimulateTouch.dylib,FAKETOUCH

TSEventTweak.dylib,FAKETOUCH

TSTweak.dylib,FAKETOUCH

WildRift.dylib,FAKETOUCH

bitcoinminer.dylib,FAKETOUCH

coin.dylib,FAKETOUCH

dls2019.dylib,FAKETOUCH

dq2.dylib,FAKETOUCH

dungeoncorp.dylib,FAKETOUCH

easimulatetower.thirdparty.2.dylib,FAKETOUCH

freefire.dylib,FAKETOUCH

gameisbugged.dylib,FAKETOUCH

hidspringboard.dylib,FAKETOUCH

mycafe.dylib,FAKETOUCH

raidthedungeon.dylib,FAKETOUCH

royaldice.dylib,FAKETOUCH

rushroyale.dylib,FAKETOUCH

tetweak.dylib,FAKETOUCH

tkasmtouch.dylib,FAKETOUCH

1.dylib,FAKE_LBS

AliDt.dylib,FAKE_LBS

CyDown.dylib,FAKE_LBS

DouTu.dylib,FAKE_LBS

GpsHookLibrary.dylib,FAKE_LBS

Lamo.dylib,FAKE_LBS

LamoClient.dylib,FAKE_LBS

OTRLocation.dylib,FAKE_LBS

WeChatHookPro.dylib,FAKE_LBS

abcd.dylib,FAKE_LBS

appstoreplusUI.dylib,FAKE_LBS

easimulatetower.client.dylib,FAKE_LBS

kfc.dylib,FAKE_LBS

lk.dylib,FAKE_LBS

m.dylib,FAKE_LBS

mmm.dylib,FAKE_LBS

pbyy.dylib,FAKE_LBS

phonetweak.dylib,FAKE_LBS

tou111.dylib,FAKE_LBS

txytweak.dylib,FAKE_LBS

xiaoqi.dylib,FAKE_LBS

xin.dylib,FAKE_LBS

zorro.dylib,FAKE_LBS

zzzzzLiberty.dylib,FAKE_LBS



...



๐Ÿ“Œ iOS Malicious Bit Hunter - A Malicious Plug-In Detection Eng ine For iOS Applications


๐Ÿ“ˆ 113.31 Punkte

๐Ÿ“Œ Chris Eng Interview - What's New with Veracode - Chris Eng - ASW #97


๐Ÿ“ˆ 34.69 Punkte

๐Ÿ“Œ http://srv-ine-virtual.sistine.gov.ve/xz.htm


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://srv-ine-virtual.sistine.gov.ve/xz.htm


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://srv-ine-virtual.sistine.gob.ve//nd.html


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://geo.ine.gob.bo/001.jpg


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://censosbolivia.ine.gob.bo/index.html


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://srv-ine-virtual.sistine.gov.ve/auliasayang.html


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://srv-ine-virtual.sistine.gob.ve/auliasayang.html


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://www.ine.gob.ve/org0n.html


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ http://censosbolivia.ine.gob.bo


๐Ÿ“ˆ 27.5 Punkte

๐Ÿ“Œ Houdini: run Arm 32-bit and 64-bit applications on an x86_64 system


๐Ÿ“ˆ 26.52 Punkte

๐Ÿ“Œ Fรผr ein Plug-in-freies Web: Oracle verabschiedet sich von Java-Plug-in


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Nik Collection Plug-ins gratis: Google verschenkt Photoshop-Plug-ins


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Nik Collection Plug-ins gratis: Google verschenkt Photoshop-Plug-ins


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Elixir Plug up to 1.0.3/1.1.6/1.2.2/1.3.1 Plug.Session Deserialization privilege escalation


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Elixir Plug up to 1.0.3/1.1.6/1.2.2/1.3.1 Plug.Static NULL Byte Bypass privilege escalation


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Plug-In-Hybrid Test 2020: Das sind die besten Plug-In-Hybride


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Fรผr ein Plug-in-freies Web: Oracle verabschiedet sich von Java-Plug-in


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Elixir Plug bis 1.0.3/1.1.6/1.2.2/1.3.1 Plug.Session Deserialization erweiterte Rechte


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Mercedes: Plug & Charge erstmals auch in einem Plug-in-Hybrid


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Elixir Plug bis 1.0.3/1.1.6/1.2.2/1.3.1 Plug.Static NULL Byte Bypass erweiterte Rechte


๐Ÿ“ˆ 22.44 Punkte

๐Ÿ“Œ Monster Hunter World wird kein Casual-Monster Hunter


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ Monster Hunter World - Adopt-a-Hunter-Initiative: Serien-Veteranen bieten ...


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ How to Watch Hunter x Hunter on Netflix from Anywhere


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ Nintendo-Switch-Bundle mit Monster Hunter Rise angekรผndigt - plus Pro Controller im Monster-Hunter-Design


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ HUNTER X HUNTER Season 7 โ€“ Release Date, Cast, Plotline


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ Monster Hunter Rise: Event zum Update 3.0 und zu Monster Hunter Stories 2 geplant


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ Aniverse auf Amazon: Neuer Channel bringt Hunter X Hunter und Overlord


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ Monster Hunter Rise im Crossover mit Monster Hunter Stories 2


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ 'Monster Hunter Wilds' wish list: 8 ways Capcom can turn Wilds into the apex Monster Hunter game


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ Wo ihr โ€žHunter x Hunterโ€œ im Stream seht (Deutsch)


๐Ÿ“ˆ 22.08 Punkte

๐Ÿ“Œ The Future of iOS is 64-Bit Only -- Apple To Stop Support For 32-Bit Apps


๐Ÿ“ˆ 20.27 Punkte

๐Ÿ“Œ Steam Pulls the Plug on macOS Mojave Support, Killing Many 32-bit Games


๐Ÿ“ˆ 20.04 Punkte

๐Ÿ“Œ KIVI: A Plug-and-Play 2-bit KV Cache Quantization Algorithm without the Need for Any Tuning


๐Ÿ“ˆ 20.04 Punkte











matomo