Top Related Projects
翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子
翻墙-科学上网、自由上网、免费科学上网、免费翻墙、油管youtube、fanqiang、软件、VPN、一键翻墙浏览器,vps一键搭建翻墙服务器脚本/教程,免费shadowsocks/ss/ssr/v2ray/goflyway账号/节点,翻墙梯子,电脑、手机、iOS、安卓、windows、Mac、Linux、路由器翻墙、科学上网、youtube视频下载、美区apple id共享账号
v2ray/xray多用户 管理部署程序
A GUI client for Windows, support Xray core and v2fly core and others
A platform for building proxies to bypass network restrictions.
A V2Ray client for Android, support Xray core and v2fly core
Quick Overview
The selierlin/Share-SSR-V2ray repository is a collection of free SSR (ShadowsocksR) and V2Ray servers and configurations. It aims to provide users with access to various proxy servers for bypassing internet restrictions and enhancing online privacy. The project is maintained in Chinese and regularly updated with new server information.
Pros
- Offers a wide range of free SSR and V2Ray servers
- Regularly updated with new server information
- Includes detailed instructions for setting up and using the servers
- Provides additional resources and tools related to internet privacy
Cons
- Server reliability and uptime may vary due to their free nature
- Some servers may become overcrowded or slow due to high usage
- Limited support for non-Chinese speaking users
- Potential legal and security risks associated with using proxy servers
Getting Started
To use the servers provided in this repository:
- Clone the repository or download the latest release.
- Choose a server from the list provided in the README.md file.
- Copy the server details (address, port, password, encryption method, etc.).
- Configure your SSR or V2Ray client with the copied information.
- Connect to the server and start browsing.
Note: Make sure to use a reputable SSR or V2Ray client and exercise caution when connecting to unknown servers.
Competitor Comparisons
翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子
Pros of free
- More frequently updated with new configurations
- Larger variety of proxy types (including Trojan, VMess, etc.)
- Better organized with categorized lists (e.g., by country, protocol)
Cons of free
- Less detailed documentation and setup instructions
- May include more unstable or short-lived proxy configurations
- Potentially higher risk of blocked or monitored servers due to public exposure
Code comparison
Share-SSR-V2ray:
ss://YWVzLTI1Ni1nY206cEtFVzhKUEJ5VFZUTHRN@172.105.180.227:4444#%F0%9F%87%A8%F0%9F%87%A6CA_4444
free:
vmess://eyJhZGQiOiIxNzIuNjcuMTk5LjM0IiwiYWlkIjoiMCIsImhvc3QiOiJ3d3cuMTYyOTgwOTEueHl6IiwiaWQiOiI1ZjdkNzc0MC02YTRmLTQxNmMtOWRkYi0wNjFhMTI4NTVmOGEiLCJuZXQiOiJ3cyIsInBhdGgiOiIvZm9vdGVycyIsInBvcnQiOiI4MCIsInBzIjoi8J+HuvCfh7hVUy0xNzIuNjcuMTk5LjM0LTAxNjEiLCJ0bHMiOiIiLCJ0eXBlIjoibm9uZSIsInYiOiIyIn0=
The free repository tends to use more complex configuration strings, often including additional metadata and encoding.
翻墙-科学上网、自由上网、免费科学上网、免费翻墙、油管youtube、fanqiang、软件、VPN、一键翻墙浏览器,vps一键搭建翻墙 服务器脚本/教程,免费shadowsocks/ss/ssr/v2ray/goflyway账号/节点,翻墙梯子,电脑、手机、iOS、安卓、windows、Mac、Linux、路由器翻墙、科学上网、youtube视频下载、美区apple id共享账号
Pros of new-pac
- More frequently updated, providing users with the latest configurations and tools
- Includes a wider variety of proxy tools and methods
- Offers detailed setup guides for different operating systems
Cons of new-pac
- Less organized repository structure, making it harder to navigate
- Lacks a clear contribution guide for potential collaborators
Code Comparison
Share-SSR-V2ray:
def update_config():
# Update configuration logic
pass
new-pac:
def update_pac():
# Update PAC file logic
pass
def update_vpn():
# Update VPN configuration logic
pass
The code comparison shows that new-pac potentially offers more granular update functions, allowing for separate updates of PAC files and VPN configurations. Share-SSR-V2ray appears to have a more generalized update function.
Both repositories aim to provide tools and configurations for bypassing internet restrictions, but they differ in their approach and organization. Share-SSR-V2ray focuses specifically on SSR and V2Ray protocols, while new-pac offers a broader range of tools and methods. Users should choose based on their specific needs and technical expertise.
v2ray/xray多用户管理部署程序
Pros of multi-v2ray
- More active development with frequent updates
- Supports multiple V2Ray configurations and easy switching between them
- Includes a user-friendly CLI interface for management
Cons of multi-v2ray
- Focuses solely on V2Ray, lacking support for other protocols like SSR
- May have a steeper learning curve for beginners due to more advanced features
Code Comparison
Share-SSR-V2ray:
bash <(curl -sL https://raw.githubusercontent.com/selierlin/Share-SSR-V2ray/master/install.sh)
multi-v2ray:
source <(curl -sL https://multi.netlify.app/v2ray.sh) --zh
Summary
multi-v2ray is a more specialized tool focusing on V2Ray configurations with active development and a user-friendly interface. It offers more advanced features but may be more complex for beginners. Share-SSR-V2ray, on the other hand, provides a broader range of protocol support, including SSR, making it potentially more versatile for users who need multiple protocol options. The installation process for both projects is straightforward, utilizing curl commands to fetch and execute their respective setup scripts.
A GUI client for Windows, support Xray core and v2fly core and others
Pros of v2rayN
- More actively maintained with frequent updates
- Offers a user-friendly GUI for easier configuration
- Supports a wider range of protocols and features
Cons of v2rayN
- Larger file size and resource consumption
- Steeper learning curve for new users
- Limited to Windows operating system
Code Comparison
Share-SSR-V2ray (Python):
def parse_ss_url(ss_url):
if ss_url.startswith('ss://'):
base64_str = ss_url[5:]
decode_str = base64.b64decode(base64_str).decode('utf-8')
parts = decode_str.split('@')
return parts[0], parts[1]
v2rayN (C#):
public static VmessItem ParseVmessUrl(string vmessUrl)
{
var result = new VmessItem();
var base64Str = vmessUrl.Substring(8);
var jsonStr = Utils.Base64Decode(base64Str);
result = JsonConvert.DeserializeObject<VmessItem>(jsonStr);
return result;
}
Both repositories focus on proxy tools, but v2rayN provides a more comprehensive solution with a GUI, while Share-SSR-V2ray is a collection of configuration files and scripts. v2rayN is more suitable for users seeking a ready-to-use application, while Share-SSR-V2ray caters to those who prefer manual configuration and have more technical expertise.
A platform for building proxies to bypass network restrictions.
Pros of v2ray-core
- More active development with frequent updates and bug fixes
- Larger community support and wider adoption
- Better documentation and official resources
Cons of v2ray-core
- Steeper learning curve for beginners
- More complex configuration process
- Potentially higher resource usage due to advanced features
Code Comparison
Share-SSR-V2ray (config example):
{
"server": "0.0.0.0",
"server_port": 8388,
"password": "password",
"method": "aes-256-cfb"
}
v2ray-core (config example):
{
"inbounds": [{
"port": 1080,
"protocol": "socks",
"settings": {
"auth": "noauth"
}
}],
"outbounds": [{
"protocol": "freedom"
}]
}
The code comparison shows that v2ray-core has a more detailed and flexible configuration structure, allowing for more advanced setups and customization options. Share-SSR-V2ray, on the other hand, has a simpler configuration format, which may be easier for beginners to understand and set up quickly.
A V2Ray client for Android, support Xray core and v2fly core
Pros of v2rayNG
- More actively maintained with frequent updates
- Offers a user-friendly Android app interface
- Supports a wider range of protocols and features
Cons of v2rayNG
- Focused solely on Android, limiting cross-platform usage
- May have a steeper learning curve for new users
- Requires more system resources due to its comprehensive feature set
Code Comparison
Share-SSR-V2ray (Python):
def parse_ss_url(ss_url):
if ss_url.startswith('ss://'):
base64_str = ss_url[5:]
decoded_str = base64.b64decode(base64_str).decode()
parts = decoded_str.split('@')
return parts[0], parts[1]
v2rayNG (Kotlin):
fun parseVmessUrl(vmessUrl: String): VmessBean? {
if (!vmessUrl.startsWith("vmess://")) {
return null
}
val vmessJson = Base64.decode(vmessUrl.substring(8), Base64.NO_WRAP).toString(charset("UTF-8"))
return Gson().fromJson(vmessJson, VmessBean::class.java)
}
Both repositories focus on handling proxy protocols, but v2rayNG offers a more comprehensive Android-specific implementation, while Share-SSR-V2ray provides a broader collection of proxy-related scripts and configurations.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Share-SSR-V2ray
Clash/SS/SSR/V2ray使ç¨æç¨/æºåºæ¨è/ç´è¿ç½ç«/éåç½ç«/ç§å¦ä¸ç½æ件
æ¤ææ¡£ä» ä¾å¦ä¹ å交æµä¹ç¨ï¼ä¸å¾ç¨äºåä¸ç®çã请å¿å°æ¤ææ¡£ç¨äºéæ³æ´»å¨ã
æ¬æä» æä¾ä¸ç§ç§å¦ä¸ç½æ¹æ³ï¼ä¸è½ä¿è¯å ¶ç¨³å®æ§åé度ãæ们建议æ¨å¯»æ¾æ´å å¯é çç§å¦ä¸ç½æ¹å¼ï¼ä»¥ç¡®ä¿é¿æ稳å®çç½ç»è®¿é®ã
临æ¶åå¨ç½çï¼
ç®å½
ð»ä¸ç½æ¹å¼
1. ðéåç½ç«
临æ¶è®¿é®è°·æï¼ä¸ä¸éè¦ä½¿ç¨ä»»ä½å·¥å ·ï¼ç¼ºç¹æ æ³è®¿é®éè°·æç«ç¹
https://g.luciaz.meï¼éè¦éªè¯çæ¡ï¼çæ¡åå«ä¸ºãå¿çµä¹çº¦ããæ°´æå¤ããcsxy@123ãï¼å®æåä¼è·³è½¬google,ç¶åæ¶èå°åå³å¯ã
Google (googlehnzyc.azurewebsites.net)
http://ac.scmor.com/ï¼å¦æ¯éåãæ¨èã
http://scholar.hedasudi.com/ï¼å¦æ¯éåãæ¨èã
å ¶å®éåï¼
insï¼å»ºè®®ææºè§ç
2. ð°æµè§å¨æ件
建议使ç¨Chromeæµè§å¨å®è£ 以ä¸æ件
éè£ ç®±: å®ç½æ¸ éãæ¨èããæ件ååº
è°·æä¸ç½å©æãæ¨èã
æ æ³è®¿é®çå¯ä»¥æå¼ä¸´æ¶åå¨ç½çä¸è½½
3. ðSS/SSR/V2rayå享账å·
4. ð¥ç´è¿
以ä¸å·¥å ·å¯å¨ä¸´æ¶ç½çä¸è·å
èçç¥å±æ©ï¼èªç§°æ°¸ä¹ å è´¹ï¼ç®åç¡®å®å¥½ç¨ï¼æ¯æå®å
UPXæµè§å¨ï¼APKPureä¸æ¬¾èªå¸¦ç§å¦ä¸ç½çå®åæµè§å¨
é¾å·é£æµè§å¨ï¼Windows端解å³ç§å¦ä¸ç½çæµè§å¨
Chromiumæµè§å¨ï¼è§£å³ç§å¦ä¸ç½çæµè§å¨ï¼æ¯æWindowsåmacOSï¼ï¼ä¸ä¸é¢çåºå«å°±æ¯æ¤æµè§å¨ççæ¬è¾é«ï¼ç°å®è£ å å为ï¼JJQQKK-2.6.7 ï¼å®è£ çæ¶åå¯è½éè¦.net 4.6çç¯å¢ï¼å¯ä»¥å¨ç½çä¸ä¸è½½å®è£
ç½æUUï¼æ¯æ访é®å½å¤çå¦æ¯ç½ç«ï¼å¦çå å¯ä»¥ä¸ï¼éè¦æ³¨å以åå®å认è¯ï¼ç®å没æéå¶æ¶é´ï¼å ·ä½å¯ä»¥ æ¥çæç¨
ãæ¨èãæå¼ç½ç«å³å¯ä½¿ç¨ï¼å¯ä»¥è®¿é®ææçç«ç¹ï¼
å·¥å ·ä¸è½½
æ¨å¯ä»¥å¨è¿éä¸è½½å¤ç§å¹³å°çå·¥å ·åå®ç½ï¼å·¥å ·ä¸è½½
使ç¨æç¨
以ä¸æ¯ä¸äºå¸¸ç¨å·¥å ·ä½¿ç¨æç¨ï¼
Clash 使ç¨æç¨
Windows | Mac | Android | Linux
Shadowsocks 使ç¨æç¨
Windows | macOS | iOS | Android | Linux
ShadowsockR 使ç¨æç¨
Windows | macOS | iOS | Android | Linux
V2ray 使ç¨æç¨
å ¶å®æç¨
Proxy SwitchyOmega设置æç¨ï¼Chrome | Firefox
å¦ææ¨æä»»ä½éæ±ãé®é¢æ建议ï¼æ¬¢è¿æåºãæ¨ä¹å¯ä»¥åéé®ä»¶è³ï¼aselierlin@gmail.com
å¦ææ¬é¡¹ç®å¯¹æ¨ææ帮å©ï¼æ¬¢è¿ Star
Star åå²
Top Related Projects
翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子
翻墙-科学上网、自由上网、免费科学上网、免费翻墙、油管youtube、fanqiang、软件、VPN、一键翻墙浏览器,vps一键搭建翻墙服务器脚本/教程,免费shadowsocks/ss/ssr/v2ray/goflyway账号/节点,翻墙梯子,电脑、手机、iOS、安卓、windows、Mac、Linux、路由器翻墙、科学上网、youtube视频下载、美区apple id共享账号
v2ray/xray多用户管理部署程序
A GUI client for Windows, support Xray core and v2fly core and others
A platform for building proxies to bypass network restrictions.
A V2Ray client for Android, support Xray core and v2fly core
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot