Skip to content

Commit eb8571c

Browse files
committed
Release v1, update copyrights
1 parent fd9c208 commit eb8571c

File tree

15 files changed

+26
-27
lines changed

15 files changed

+26
-27
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pip install apkid
2323
```
2424
usage: apkid [-h] [-j] [-t TIMEOUT] [-o DIR] [FILE [FILE ...]]
2525
26-
APKiD - Android Application Identifier v0.9.5
26+
APKiD - Android Application Identifier v1.0.0
2727
2828
positional arguments:
2929
FILE apk, dex, or directory
@@ -39,8 +39,8 @@ optional arguments:
3939

4040
# Submitting New Packers / Compilers / Obfuscators
4141

42-
If you come across an APK or DEX that APKiD does not recognize, please open a GitHub issue and tell us:
43-
* what you think it is
42+
If you come across an APK or DEX which APKiD does not recognize, please open a GitHub issue and tell us:
43+
* what you think it is
4444
* the file hash (either MD5, SHA1, SHA256)
4545

4646
We are open to any type of concept you might have for "something interesting" to detect, so do not limit yourself solely to packers, compilers or obfuscators. If there is an interesting anti disassembler, anti vm, anti* trick, please make an issue.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Usage
3737

3838
usage: apkid [-h] [-j] [-t TIMEOUT] [-o DIR] [FILE [FILE ...]]
3939

40-
APKiD - Android Application Identifier v0.9.5
40+
APKiD - Android Application Identifier v1.0.0
4141

4242
positional arguments:
4343
FILE apk, dex, or directory
@@ -53,7 +53,7 @@ Usage
5353
Submitting New Packers / Compilers / Obfuscators
5454
================================================
5555

56-
If you come across an APK or DEX that APKiD does not recognize, please
56+
If you come across an APK or DEX which APKiD does not recognize, please
5757
open a GitHub issue and tell us: \* what you think it is \* the file
5858
hash (either MD5, SHA1, SHA256)
5959

apkid/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
"""
4-
Copyright (C) 2016 RedNaga. http://rednaga.io
4+
Copyright (C) 2017 RedNaga. http://rednaga.io
55
All rights reserved. Contact: rednaga@protonmail.com
66
77
@@ -27,10 +27,10 @@
2727
"""
2828

2929
__title__ = 'apkid'
30-
__version__ = '0.9.5'
30+
__version__ = '1.0.0'
3131
__author__ = 'Caleb Fenton & Tim Strazzere'
3232
__license__ = 'GPL & Commercial'
33-
__copyright__ = 'Copyright (C) 2016 RedNaga'
33+
__copyright__ = 'Copyright (C) 2017 RedNaga'
3434

3535
import argparse
3636

apkid/apkid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (C) 2016 RedNaga. http://rednaga.io
2+
Copyright (C) 2017 RedNaga. http://rednaga.io
33
All rights reserved. Contact: rednaga@protonmail.com
44
55

apkid/rules/apk/common.yara

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 RedNaga. http://rednaga.io
2+
* Copyright (C) 2017 RedNaga. http://rednaga.io
33
* All rights reserved. Contact: rednaga@protonmail.com
44
*
55
*

apkid/rules/apk/packers.yara

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 RedNaga. http://rednaga.io
2+
* Copyright (C) 2017 RedNaga. http://rednaga.io
33
* All rights reserved. Contact: rednaga@protonmail.com
44
*
55
*
@@ -38,7 +38,7 @@ rule dxshield : packer
3838
$res = "assets/DXINFO.XML"
3939
4040
condition:
41-
is_apk and ($decryptlib and $res)
41+
is_apk and ($decryptlib and $res)
4242
}
4343

4444
rule secneo : packer

apkid/rules/dex/abnormal.yara

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 RedNaga. http://rednaga.io
2+
* Copyright (C) 2017 RedNaga. http://rednaga.io
33
* All rights reserved. Contact: rednaga@protonmail.com
44
*
55
*

apkid/rules/dex/anti-vm.yara

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 RedNaga. http://rednaga.io
2+
* Copyright (C) 2017 RedNaga. http://rednaga.io
33
* All rights reserved. Contact: rednaga@protonmail.com
44
*
55
*

apkid/rules/dex/common.yara

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 RedNaga. http://rednaga.io
2+
* Copyright (C) 2017 RedNaga. http://rednaga.io
33
* All rights reserved. Contact: rednaga@protonmail.com
44
*
55
*

apkid/rules/dex/compilers.yara

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 RedNaga. http://rednaga.io
2+
* Copyright (C) 2017 RedNaga. http://rednaga.io
33
* All rights reserved. Contact: rednaga@protonmail.com
44
*
55
*

0 commit comments

Comments
 (0)