Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
gofireprox — FireProx written in Go | Kitploit
工具/GitHubGitHub/mr-pmillz/gofireprox
Web Proxies & InterceptionIDS/IPS EvasionWeb SecurityPenetration TestingRed Teaming
GitHubmr-pmillz/gofireprox

gofireprox

FireProx written in Go

查看仓库
2032年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

GoFireProx

这是 FireProx 到 Golang 的移植版本

安装

root@kitploit:~
go install -v github.com/mr-pmillz/gofireprox/cmd/gofireprox@latest

将 gofireprox 作为库使用

将 gofireprox 与其他 Go 程序集成

root@kitploit:~
package main

import (
	"fmt"
	"github.com/mr-pmillz/gofireprox"
)

func main() {
	region := "us-east-1"
	
	fpClient, err := gofireprox.NewFireProx(&gofireprox.FireProxOptions{
		AccessKey:       "CHANGEME",
		SecretAccessKey: "CHANGEME",
		Region:          region,
		URL:             "https://ifconfig.me",
	})
	if err != nil {
		panic(err)
	}
	
	apiID, proxyURL, err := fpClient.CreateAPI()
	if err != nil {
		panic(err)
	}
	// use the proxyURL for your requests as you would normally with an http.Client. See FireProx Docs for headers etc. X-My-X-Forwarded-For: etc...
	// DoWork...
	// Delete API
	successful := fpClient.DeleteAPI(apiID)
	var success string
	if successful {
		success = "Success!"
	} else {
		success = "Failed!"
	}
	fmt.Printf("Deleting %s => %s\n", apiID, success)
}

致谢

  • Mike Felch (ustayready) - FireProx
下载工具