Skip to content
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #354 from hashview/0.7.2-beta
Browse files Browse the repository at this point in the history
0.7.2 beta
  • Loading branch information
i128 authored Oct 20, 2017
2 parents 233ff61 + 8861bb7 commit ad899b2
Show file tree
Hide file tree
Showing 79 changed files with 1,323 additions and 1,329 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ control/wordlists/*
!control/wordlists/password.gz
control/tmp/*
!control/tmp/.blank
logs/*.log
!logs/.blank
logs/jobs/*
!logs/jobs/.blank
*.pot
*.restore
*.idea
Expand Down
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,26 @@
Notable changes will be documented here

## Current Release
## [v0.7.2-beta] - 2017-10-19
### Added
- Added Logging Facility, logs should now be under logs/*.log and logs/jobs/*.log (Logs will rotate daily. Logs greater than 30 days will be automatically deleted
- Added Collapsing window in analytics in Weak Account Password
- Added ability to download user accounts/passwords for accounts that are found to be weak in csv format
- Added ability to set OTP passwords for users using google authenticate (thanks: https://github.com/nicbrink)

### Removed
- Wordlist Checksums is no longer a background task that fires every 5 seconds. Instead its queued up by wordlist importer.

## [v0.7.1-beta] - 2017-9-4
### Fixed
- Fixed calculation bug where SmartWordlist was being refactored into new SmartWordlist. Now calculations are quicker
- Fixed (hopefully) bug where hashview prematurely 'completes' a job (and subsequently kills a running task). This only happens in rare cases where multiple agents are involved.
- Fixed (hopefully) issue where threads not exiting when they're told to. This resulted in issues related to: https://github.com/hashview/hashview/issues/264
- Fixed issue where rules listed under task details was displaying rule.id, and not the rule.name: https://github.com/hashview/hashview/issues/342
- Fixed SMTP sender error experienced when user sends test message
https://github.com/hashview/hashview/issues/341
- Fixed issue where foreign DB's listed in config were not being connected too: https://github.com/hashview/hashview/issues/351

## [v0.7.1-beta] - 2017-09-04
### Added
- Rake task to reset db (thanks: nicbrink)
- New hub route/tab if registered
Expand All @@ -16,7 +34,7 @@ Notable changes will be documented here

### Fixed
- Fixed issue where importing the same hash twice into the db where one had an incorrect hashtype resulted in a 500 error. Now the entry is updated with the new hashtype.
- Fixed timouts when searching large hash sets with Hashview Hub
- Fixed timeouts when searching large hash sets with Hashview Hub

## [v0.7.0-beta] - 2017-07-22
### Added
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ruby '2.2.2'
group :development do
gem 'rubocop'
gem 'factory_girl'
gem 'rotp'
end

group :test do
Expand All @@ -28,5 +29,6 @@ gem 'mysql'
gem 'foreman'
gem 'rest-client'
gem 'digest'
gem 'logger'


6 changes: 5 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ GEM
less (~> 2.6.0)
sprockets (> 2, < 4)
tilt
logger (1.2.8)
loofah (2.0.3)
nokogiri (>= 1.5.9)
mail (2.6.4)
Expand Down Expand Up @@ -177,6 +178,7 @@ GEM
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rotp (3.3.0)
rubocop (0.42.0)
parser (>= 2.3.1.1, < 3.0)
powerpack (~> 0.1)
Expand Down Expand Up @@ -238,6 +240,7 @@ DEPENDENCIES
foreman
haml
json
logger
mysql
pony
rake
Expand All @@ -246,6 +249,7 @@ DEPENDENCIES
resque-scheduler
resque-web
rest-client
rotp
rubocop
sinatra (~> 1.4.7)
sinatra-flash
Expand All @@ -254,4 +258,4 @@ RUBY VERSION
ruby 2.2.2p95

BUNDLED WITH
1.14.6
1.15.4
Loading

0 comments on commit ad899b2

Please sign in to comment.