Codebase list python-faraday / fdd8b45
Update upstream source from tag 'upstream/2.7.1' Update to upstream version '2.7.1' with Debian dir d1d4abddfdf17f58ad574eac3b5b9f89b5d02615 Sophie Brun 6 years ago
6 changed file(s) with 68 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 Please search the [Wiki](https://github.com/infobyte/faraday/wiki) for a solution before posting a ticket. Use the <strong>“New Support Request”</strong> button to the right of the screen to submit a ticket for technical support.
1
2 ## Issue Type
3 - Bug Re port
4 - Feature Idea
5 - Documentation Report
6
7
8 ## Faraday version
9
10 Paste the output of the *./faraday.py --version* command
11
12 ## Component Name
13
14 If you know where the problem lays indicate it:
15 WebGui/GTKGui/Plugin/Console/Continuous Scanning/Etc.
16
17 ## Steps to reproduce
18
19 Provide detailed steps on how the issue happened so we can try to reproduce it. If the issue is random, please provide as much information as possible.
20
21 ## Expected results
22
23 What did you expect to happen when following the steps above?
24
25 ### Debugging tracebacks (current results)
26
27 Try to reproduce the bug with the server and/or gtk client in debug mode and check the logs for the ERROR string.
28 Add here any errors you find while running in debug mode or, if possible, Faraday’s log files (located at *$HOME/.faraday/logs/*).
29
30 If you need help on how to execute in debug mode [click here for more information](https://github.com/infobyte/faraday/wiki/troubleshooting).
31
32 Please attach the result of:
33
34 pip freeze > requirements_freeze.txt
35
36 ### Screenshots
37
38 If you don't find anything on the logs, please provide screenshots of the error.
39
40 ## Environment information
41
42 ### Configuration files
43
44 Mention any settings you have changed/added/removed.
45
46 ### Reports/Extra data
47
48 If you are having issues with plugins, please attach relevant files if possible.
49 (strip your reports of all sensitive information beforehand).
50
51 ### OS
52
53 Provide information on your operating system. Example:
54
55 $ cat /etc/lsb-release
56 DISTRIB_ID=Ubuntu
57 DISTRIB_RELEASE=16.10
58 DISTRIB_CODENAME=yakkety
59 DISTRIB_DESCRIPTION="Ubuntu 16.10"
60
77 New features in the latest update
88 =====================================
99
10 November 17, 2017:
11 ---
12 * Fix bug with tags in models.
1013
1114 November 5, 2017:
1215 ---
0 2.7
0 2.7.1
11 <faraday>
22
33 <appname>Faraday - Penetration Test IDE</appname>
4 <version>2.7</version>
4 <version>2.7.1</version>
55 <debug_status>0</debug_status>
66 <font>-Misc-Fixed-medium-r-normal-*-12-100-100-100-c-70-iso8859-1</font>
77 <home_path>~/</home_path>
11551155 self.hostnames = vuln_web.get('hostnames')
11561156 self.impact = vuln_web.get('impact')
11571157 self.service = vuln_web.get('service')
1158 self.tags = vuln_web.get('tags')
1158 self.tags = vuln_web.get('tags', list())
11591159 self.target = vuln_web.get('target')
11601160 self.parent = vuln_web.get('parent')
11611161 self.policyviolations = vuln_web.get('policyviolations', list())
88 from sqlalchemy.ext.declarative import declarative_base
99
1010
11 SCHEMA_VERSION = 'W.2.7'
11 SCHEMA_VERSION = 'W.2.7.1'
1212
1313 Base = declarative_base()
1414