aboutsummaryrefslogtreecommitdiffhomepage
path: root/sec_certs
Commit message (Collapse)AuthorAgeFilesLines
...
* completely separated html parsingStanislav Boboň2020-12-211-7/+14
|
* revoked items addedStanislav Boboň2020-12-211-22/+39
|
* imports and removing < 100Stanislav Boboň2020-12-191-5/+2
|
* next quick fix of exceptionsStanislav Boboň2020-12-191-1/+1
|
* redo of html, removed fips_ prefixStanislav Boboň2020-12-191-75/+92
|
* added redo featureStanislav Boboň2020-12-191-10/+17
|
* fixed rules + more exceptionsStanislav Boboň2020-12-191-5/+11
|
* works in parallelStanislav Boboň2020-12-182-20/+16
|
* new rules with exceptionsStanislav Boboň2020-12-181-33/+39
|
* keywords work, tables dontStanislav Boboň2020-12-152-51/+62
|
* doesnt change certs for some reason, but parallelism worksStanislav Boboň2020-12-122-79/+99
|
* Keywords in certStanislav Boboň2020-12-102-33/+38
|
* slight changesStanislav Boboň2020-12-091-1/+1
|
* parse_cert_file for certificateStanislav Boboň2020-12-091-1/+58
|
* fixed fixesStanislav Boboň2020-12-072-27/+31
|
* Fixed changesStanislav Boboň2020-12-033-14/+31
|
* ugly import statements and short term goalsStanislav Boboň2020-12-032-8/+8
|
* tidied rules, added some moreStanislav Boboň2020-12-031-29/+70
|
* algorithms can be serialized (finally)Stanislav Boboň2020-11-303-32/+122
|
* Merge branch 'master' into fipsStanislav Boboň2020-11-301-1/+2
|\
| * Merge branch 'master' into fips-for-prStanislav Boboň2020-11-307-158/+474
| |\
* | | quickfixes after mergeStanislav Boboň2020-11-301-3/+3
| | |
* | | Merge branch 'master' into fipsStanislav Boboň2020-11-307-160/+473
|\ \ \ | | |/ | |/|
| * | Implement improvements proposed by J08nY in reviewAdam Janovsky2020-11-284-34/+30
| | |
| * | fix hardcoded path, redundant functionsAdam Janovsky2020-11-281-13/+0
| | |
| * | Rethought way of processing certificatesAdam Janovsky2020-11-284-66/+193
| | | | | | | | | | | | | | | | | | - Every certificate now implements a static method for its processing - These are called in parallel - There's some code duplication at the moment, stuff can be simplified.
| * | hotfix testAdam Janovsky2020-11-271-1/+1
| | |
| * | type hinting checksAdam Janovsky2020-11-274-29/+27
| | |
| * | Improve (de)serialization of objects from/in jsonAdam Janovsky2020-11-273-24/+54
| | | | | | | | | | | | | | | | | | | | | | | | - Every complex serialiazable object now inherits from `ComplexSerializableType` - All such objects now implement `to_dict()`, `from_dict()` methods - Some objects for which standalone json file makes sense implement `to_json()`, `from_json()` - Rewrite test and demos - Datasets `root_dir` is now not part of serialization, but only internal representation
| * | Implement better loggingAdam Janovsky2020-11-274-35/+41
| | | | | | | | | | | | | | | | | | - Now logging on info level, each module into its owner logger. - Logging is performed on standard output - Logging is performed into file `./cert_processing_log.txt` that is gitignored
| * | added private/public methods to dataset,certificateAdam Janovsky2020-11-272-69/+64
| | |
| * | replace 403 st links with NoneAdam Janovsky2020-11-261-0/+4
| | |
| * | move merge_certs() to CCDatasetAdam Janovsky2020-11-263-30/+28
| | |
| * | Finalize proposal of cert download and convertAdam Janovsky2020-11-264-51/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The proposed method of processing certificates is breadth-first. By that I mean that single task is done for all certificates, then next task is evaluated. All tasks should be implemented as static methods and are to be paralelized by calling `sec-certs/cert_processing.py`. Currently, a generic method `process_paralel()` sits there that is capable of pretty much arbitrary parallel processing (both using threads and processes). Any methods to-be called by this method must require unpacked arguments on the input.
| * | Test for download of pdf filesAdam Janovsky2020-11-251-0/+8
| | | | | | | | | | | | The test assumes that the files download correctly.
| * | sanity check on dataset size on deserializationAdam Janovsky2020-11-251-1/+3
| | |
| * | add dataset print methodAdam Janovsky2020-11-251-1/+1
| | |
| * | Alpha version of cert download and convertAdam Janovsky2020-11-254-15/+99
| | | | | | | | | | | | | | | | | | - Adds the ability to download pdf certificates in a dataset. - introduces local path variable into dataset object. - Ability to convert pdf certificates into txt certificates.
| * | Merge branch 'master' into cc-download-extract-pdfAdam Janovsky2020-11-251-1/+1
| |\ \
| * \ \ Merge branch 'master' into cc-download-extract-pdfAdam Janovsky2020-11-254-621/+100
| |\ \ \
| * | | | adds download CC cert_reports and sec_targetAdam Janovsky2020-11-242-1/+40
| | | | | | | | | | | | | | | | | | | | | | | | | Allow for download of pdfs, specifically certificate_reports and security_targets in a parallel way.
* | | | | gitignore for dataset + algorithm file creationStanislav Boboň2020-11-281-1/+2
| | | | |
* | | | | parsing now depends on algorithmsStanislav Boboň2020-11-264-32/+86
| | | | |
* | | | | creating Algorithm classStanislav Boboň2020-11-252-21/+66
| |_|_|/ |/| | |
* | | | remove ''Stanislav Boboň2020-11-251-1/+1
| | | |
* | | | added method for creating graphs, minor fixesStanislav Boboň2020-11-252-5/+68
| | | |
* | | | begin to processing algorithmsStanislav Boboň2020-11-251-0/+9
| | | |
* | | | non trivial amount of changes to make this workStanislav Boboň2020-11-251-46/+0
| | | |
* | | | wait for approval + everything changedStanislav Boboň2020-11-251-0/+10
| | | |
* | | | demo + dumping + keyword extractionStanislav Boboň2020-11-251-0/+36
| |_|/ |/| |