ossa-scanner 0.1.53__tar.gz → 0.1.54__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/PKG-INFO +20 -10
- ossa_scanner-0.1.54/README.md +41 -0
- ossa_scanner-0.1.54/ossa_scanner/__init__.py +1 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner.egg-info/PKG-INFO +20 -10
- ossa_scanner-0.1.53/README.md +0 -31
- ossa_scanner-0.1.53/ossa_scanner/__init__.py +0 -1
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/LICENSE +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/cli.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/scanner.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/uploader.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/utils/__init__.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/utils/downloader.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/utils/hash_calculator.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/utils/os_detection.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/utils/package_manager.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner/utils/swhid_calculator.py +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner.egg-info/SOURCES.txt +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner.egg-info/dependency_links.txt +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner.egg-info/entry_points.txt +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner.egg-info/requires.txt +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/ossa_scanner.egg-info/top_level.txt +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/setup.cfg +0 -0
- {ossa_scanner-0.1.53 → ossa_scanner-0.1.54}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ossa_scanner
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.54
|
4
4
|
Summary: Open Source Software Advisory generator for Core and Base Linux Packages.
|
5
5
|
Home-page: https://github.com/oscarvalenzuelab/ossa_scanner
|
6
6
|
Author: Oscar Valenzuela
|
@@ -25,14 +25,17 @@ Requires-Dist: swh.model
|
|
25
25
|
Requires-Dist: distro
|
26
26
|
Requires-Dist: ssdeep
|
27
27
|
|
28
|
-
#
|
29
|
-
|
28
|
+
# Open Source Advisory Scanner (Generator)
|
29
|
+
OSSA-Scanner produces OSSA Advisory files per each package available (installed or not) in any Linux OS that uses RPM or Deb packages.
|
30
30
|
|
31
|
-
##
|
31
|
+
## Installation
|
32
|
+
|
33
|
+
### Centos/AL/AlmaLinux
|
34
|
+
|
35
|
+
Installing dependencies, including Software Heritage Scanner for SWHIDs and SSDEEP for FuzzyHashing:
|
32
36
|
|
33
37
|
```
|
34
|
-
$ yum -y update
|
35
|
-
$ yum -y groupinstall "Development Tools"
|
38
|
+
$ yum -y update && yum -y groupinstall "Development Tools"
|
36
39
|
$ yum -y install python-pip python3-devel
|
37
40
|
$ pip3 install swh-scanner
|
38
41
|
$ BUILD_LIB=1 pip install ssdeep
|
@@ -50,9 +53,16 @@ $ pip3 install ossa-scanner --break-system-packages
|
|
50
53
|
```
|
51
54
|
|
52
55
|
|
53
|
-
###
|
56
|
+
### Running in background
|
54
57
|
```
|
55
|
-
|
58
|
+
$ nohup ossa_scanner &
|
59
|
+
```
|
60
|
+
|
61
|
+
To upgrade, just execute install with --upgrade
|
56
62
|
```
|
57
|
-
|
58
|
-
|
63
|
+
$ pip install --upgrade ossa_scanner
|
64
|
+
```
|
65
|
+
|
66
|
+
### License
|
67
|
+
|
68
|
+
This project is licensed under MIT.
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# Open Source Advisory Scanner (Generator)
|
2
|
+
OSSA-Scanner produces OSSA Advisory files per each package available (installed or not) in any Linux OS that uses RPM or Deb packages.
|
3
|
+
|
4
|
+
## Installation
|
5
|
+
|
6
|
+
### Centos/AL/AlmaLinux
|
7
|
+
|
8
|
+
Installing dependencies, including Software Heritage Scanner for SWHIDs and SSDEEP for FuzzyHashing:
|
9
|
+
|
10
|
+
```
|
11
|
+
$ yum -y update && yum -y groupinstall "Development Tools"
|
12
|
+
$ yum -y install python-pip python3-devel
|
13
|
+
$ pip3 install swh-scanner
|
14
|
+
$ BUILD_LIB=1 pip install ssdeep
|
15
|
+
$ pip3 install ossa-scanner
|
16
|
+
```
|
17
|
+
|
18
|
+
## Ubuntu/Debian
|
19
|
+
```
|
20
|
+
$ apt-get update -y && apt-get upgrade -y
|
21
|
+
$ apt install python3-pip -y
|
22
|
+
$ apt remove python3-blinker python3-zipp python3-urllib3 python3-typing-extensions python3-six -y
|
23
|
+
$ pip install swh-scanner --break-system-packages
|
24
|
+
$ apt install ssdeep python3-ssdeep -y
|
25
|
+
$ pip3 install ossa-scanner --break-system-packages
|
26
|
+
```
|
27
|
+
|
28
|
+
|
29
|
+
### Running in background
|
30
|
+
```
|
31
|
+
$ nohup ossa_scanner &
|
32
|
+
```
|
33
|
+
|
34
|
+
To upgrade, just execute install with --upgrade
|
35
|
+
```
|
36
|
+
$ pip install --upgrade ossa_scanner
|
37
|
+
```
|
38
|
+
|
39
|
+
### License
|
40
|
+
|
41
|
+
This project is licensed under MIT.
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.1.54"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ossa_scanner
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.54
|
4
4
|
Summary: Open Source Software Advisory generator for Core and Base Linux Packages.
|
5
5
|
Home-page: https://github.com/oscarvalenzuelab/ossa_scanner
|
6
6
|
Author: Oscar Valenzuela
|
@@ -25,14 +25,17 @@ Requires-Dist: swh.model
|
|
25
25
|
Requires-Dist: distro
|
26
26
|
Requires-Dist: ssdeep
|
27
27
|
|
28
|
-
#
|
29
|
-
|
28
|
+
# Open Source Advisory Scanner (Generator)
|
29
|
+
OSSA-Scanner produces OSSA Advisory files per each package available (installed or not) in any Linux OS that uses RPM or Deb packages.
|
30
30
|
|
31
|
-
##
|
31
|
+
## Installation
|
32
|
+
|
33
|
+
### Centos/AL/AlmaLinux
|
34
|
+
|
35
|
+
Installing dependencies, including Software Heritage Scanner for SWHIDs and SSDEEP for FuzzyHashing:
|
32
36
|
|
33
37
|
```
|
34
|
-
$ yum -y update
|
35
|
-
$ yum -y groupinstall "Development Tools"
|
38
|
+
$ yum -y update && yum -y groupinstall "Development Tools"
|
36
39
|
$ yum -y install python-pip python3-devel
|
37
40
|
$ pip3 install swh-scanner
|
38
41
|
$ BUILD_LIB=1 pip install ssdeep
|
@@ -50,9 +53,16 @@ $ pip3 install ossa-scanner --break-system-packages
|
|
50
53
|
```
|
51
54
|
|
52
55
|
|
53
|
-
###
|
56
|
+
### Running in background
|
54
57
|
```
|
55
|
-
|
58
|
+
$ nohup ossa_scanner &
|
59
|
+
```
|
60
|
+
|
61
|
+
To upgrade, just execute install with --upgrade
|
56
62
|
```
|
57
|
-
|
58
|
-
|
63
|
+
$ pip install --upgrade ossa_scanner
|
64
|
+
```
|
65
|
+
|
66
|
+
### License
|
67
|
+
|
68
|
+
This project is licensed under MIT.
|
ossa_scanner-0.1.53/README.md
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# ossa_scanner
|
2
|
-
Open Source Advisory Scanner (Generator)
|
3
|
-
|
4
|
-
## Centos/AL/AlmaLinux
|
5
|
-
|
6
|
-
```
|
7
|
-
$ yum -y update
|
8
|
-
$ yum -y groupinstall "Development Tools"
|
9
|
-
$ yum -y install python-pip python3-devel
|
10
|
-
$ pip3 install swh-scanner
|
11
|
-
$ BUILD_LIB=1 pip install ssdeep
|
12
|
-
$ pip3 install ossa-scanner
|
13
|
-
```
|
14
|
-
|
15
|
-
## Ubuntu/Debian
|
16
|
-
```
|
17
|
-
$ apt-get update -y && apt-get upgrade -y
|
18
|
-
$ apt install python3-pip -y
|
19
|
-
$ apt remove python3-blinker python3-zipp python3-urllib3 python3-typing-extensions python3-six -y
|
20
|
-
$ pip install swh-scanner --break-system-packages
|
21
|
-
$ apt install ssdeep python3-ssdeep -y
|
22
|
-
$ pip3 install ossa-scanner --break-system-packages
|
23
|
-
```
|
24
|
-
|
25
|
-
|
26
|
-
### *** Running in background ***
|
27
|
-
```
|
28
|
-
> nohup ossa_scanner &
|
29
|
-
```
|
30
|
-
> pip install --upgrade ossa_scanner
|
31
|
-
cp -nf /home/ec2-user/* /home/ec2-user/OpenSourceAdvisoryDatabase/advisories/ && cd /home/ec2-user/OpenSourceAdvisoryDatabase/advisories/ && git add * && git commit -am 'Importing AmazonLinux OSSA' && git push
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.1.53"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|