GithubHelp home page GithubHelp logo

rubyfu / rubyfu Goto Github PK

View Code? Open in Web Editor NEW
320.0 320.0 104.0 23.28 MB

Rubyfu, where Ruby goes evil!

Home Page: http://rubyfu.net

CSS 65.30% JavaScript 34.70%
blackhat book hacking network-security penetration-testing pentesting-windows red-team ruby rubyfu

rubyfu's Issues

right place for images?

There are images in:

  • .gitbook/assets
  • assets
  • images

Seems redundant, where is the right place?

bogojoker.com/readline redirects

module-0x1-or.../README.md at the very bottom, the link there redirects to something funky - holmestrail.something or other.

Just thought you should know :)

Inventory notification

Your website has been inventoried on Rawsec's CyberSecurity Inventory.

https://inventory.rawsec.ml/resources.html#RubyFu

What is Rawsec's CyberSecurity Inventory?

An inventory of tools and resources about CyberSecurity. This inventory aims to help people to find everything related to CyberSecurity.

More details about features here.

Note: the inventory is a FLOSS (Free, Libre and Open-Source Software) project.

Why should you care about being inventoried?

Mainly because this is giving visibility to your tool and improve its referencing.

Badges

The badge shows to your community that your are inventoried. It looks good but also shows you care about your project, that your tool is referenced.

Feel free to claim your badge here: http://inventory.rawsec.ml/features.html#badges, it looks like that Rawsec's CyberSecurity Inventory, but there are several styles available.

Want to thank us?

If you want to thank us, you can help make our open project better known by tweeting about it! For example: Twitter URL

So what?

That's all, this message is just to notify you if you care. Else you can close this issue.

Brazilian portuguese Translation!

I started to translate RubyFu to Brazilian Portuguese. I'll associat my PR with this issue.

Thanks guys for this project. That's really amazing.

FAQS duplicate

Similar to some issues we saw before there is another duplicate

  • faqs.md
  • FAQS/README.md (to remove)

to make Twitter API a better API for programmers

السلام عليكم

https://github.com/rubyfu/RubyFu/blob/master/module_0x4__web_kung_fu/twitter_api.md

We know that Twitter Apps require approval from the Twitter API Team in order to create a project :(

so, we're going to use the [Android] Twitter app's consumer_key: 3nVuSoBZnx6U4vzUxf5w and consumer_secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys .

Twitter can't ban you.

My Edit : -
Just put username and password 😄

#!/usr/bin/env ruby
require 'net/http'
require 'twitter'
require 'pp'

username = "" # Your Username
password = "" # Your Passowrd
def guest_token()
	gt = URI.parse("https://api.twitter.com/1.1/guest/activate.json")
	guest = Net::HTTP.new(gt.host, gt.port)
	guest.use_ssl = true
	req = Net::HTTP::Post.new(gt.request_uri)
	req["Authorization"] = "Bearer AAAAAAAAAAAAAAAAAAAAAFXzAwAAAAAAMHCxpeSDG1gLNLghVe8d74hl6k4%3DRUMF4xAQLsbeBhTSRrCiQpJtxoGWeyHrDb5te2jpGskWDFW82F"
	res = guest.request(req).body
	return res[/{"guest_token":"(.*?)"}/,1]
end
uri = URI.parse("https://api.twitter.com/auth/1/xauth_password.json")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri.request_uri)
request["X-Guest-Token"] = guest_token()
request["Authorization"] = "Bearer AAAAAAAAAAAAAAAAAAAAAFXzAwAAAAAAMHCxpeSDG1gLNLghVe8d74hl6k4%3DRUMF4xAQLsbeBhTSRrCiQpJtxoGWeyHrDb5te2jpGskWDFW82F"
request.set_form_data({"x_auth_identifier" => username,"x_auth_password" => password})
response = http.request(request).body
private_access_token = response[/"oauth_token":"(.*?)"/,1]
private_access_token_secret = response[/"oauth_token_secret":"(.*?)"/,1]
############# Now u can use Twitter API Lib
client = Twitter::REST::Client.new do |config|
        config.consumer_key        = "3nVuSoBZnx6U4vzUxf5w"
        config.consumer_secret     = "Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys"
        config.access_token        = private_access_token
        config.access_token_secret = private_access_token_secret
end
#############
client.update("@0x1337r00t With @KINGSABRI #RubyFu")

~ 1337r00t
Blackfox's Team

Duplicate content / old content

The folders with underscore seems to come from an old implementation and to be unused now.

image

Can we clean the duplicate content?

Need more forensic

I'm not a forensic guy, we may need a hand from DFIR guys to enhance Module 0x6

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.