Skip to content

Commit

Permalink
Workaround for postgres setup
Browse files Browse the repository at this point in the history
looks to have an issue in dm-postgres-adapter:
datamapper/dm-postgres-adapter#7

Workaround: Removed Binary type for extension_requester_http
response_data property. Maybe this extension wont works properly..
But now, BeEF start!
  • Loading branch information
Sliim committed Jul 7, 2016
1 parent d3a30a9 commit bf268c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/requester/models/http.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Http
property :allow_cross_domain, Text, :lazy => false, :default => "true"

# The http response body received. In clear text.
property :response_data, Binary, :lazy => true, :length => 2097152
property :response_data, Text, :lazy => true

# The http response code. Useful to handle cases like 404, 500, 302, ...
property :response_status_code, Integer, :lazy => true
Expand Down

0 comments on commit bf268c9

Please sign in to comment.