mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	fix(backend): allow accessing private IP when testing
This commit is contained in:
		
							parent
							
								
									f36f4b5398
								
							
						
					
					
						commit
						7ccccf5545
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -42,7 +42,7 @@ class HttpRequestServiceAgent extends http.Agent {
 | 
			
		|||
		const socket = super.createConnection(options, callback)
 | 
			
		||||
		.on('connect', ()=>{
 | 
			
		||||
			const address = socket.remoteAddress;
 | 
			
		||||
			if (process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'test') {
 | 
			
		||||
			if (process.env.NODE_ENV === 'production') {
 | 
			
		||||
				if (address && ipaddr.isValid(address)) {
 | 
			
		||||
					if (this.isPrivateIp(address)) {
 | 
			
		||||
						socket.destroy(new Error(`Blocked address: ${address}`));
 | 
			
		||||
| 
						 | 
				
			
			@ -84,7 +84,7 @@ class HttpsRequestServiceAgent extends https.Agent {
 | 
			
		|||
		const socket = super.createConnection(options, callback)
 | 
			
		||||
		.on('connect', ()=>{
 | 
			
		||||
			const address = socket.remoteAddress;
 | 
			
		||||
			if (process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'test') {
 | 
			
		||||
			if (process.env.NODE_ENV === 'production') {
 | 
			
		||||
				if (address && ipaddr.isValid(address)) {
 | 
			
		||||
					if (this.isPrivateIp(address)) {
 | 
			
		||||
						socket.destroy(new Error(`Blocked address: ${address}`));
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue