【生活经历分享】华师国培 华师伴学 合同都是坑 消费者付款后无法退款
和华师国培签合同需小心,合同中都是保护华师的条款,没有保护消费者的条款。
收到钱,就算你因对培训质量不满意,也不能退款。因合同消费者维权肯定十分艰难。
华师伴学的授课方式是看录制的视频,不是真人现场教学。是否是您和孩子想要的学习方式?
各位打算报名的,交费要谨慎!
其他人在小红书上发的,转:
深圳市华师国培教育科技有限公司,黑心机构,大家擦亮眼睛,别被骗了,消费欺诈,虚假承诺,签合同各种坑,收到钱了不履行承诺不退款,乱扣费,维权艰难! - 小红书
Python 实现 Ping 功能(但目前功能不成功),源代码如下:
1 import threading 2 import time 3 4 from random import randint 5 6 from scapy.all import IP, TCP, ICMP, sr1 7 8 class pingOneAddress(threading.Thread): 9 def __init__(self, ipStr: str): 10 super().__init__() 11 self.setDaemon(True) 12 self.running = None 13 self.ipStr = ipStr 14 self._stop_event = threading.Event() 15 self.start() 16 17 @staticmethod 18 def icmp_ping(target_ip: str): 19 ret = False 20 # 构造ICMP请求包 21 id_ip = randint(1, 65535) 22 id_ping = randint(1, 65535) # 随机产生 ping ID 位 23 seq_ping = randint(1, 65535) # 随机产生 ping 序列号位 24 # icmp = IP(dst=target_ip, ttl=64,id=id_ip) / ICMP(type=8,id=id_ping,seq=seq_ping) 25 # icmp = IP(dst=target_ip, ttl=64, id=id_ip) / ICMP(type=8) / b'welcome tst ping' 26 icmp = IP(dst=target_ip, ttl=64,id=id_ip) / ICMP(id=id_ping,seq=seq_ping) / b'welcome tst ping.welcome tt ping' 27 # 发送ICMP请求并接收响应 28 print(icmp) 29 reply = sr1(icmp, timeout=3, verbose=False) 30 31 if reply: # 此处一直返回 None 32 replyRes = reply[0] 33 replyAns = reply[1] 34 if reply[IP].src == target_ip: 35 if replyAns.listname == 'Unanswered': 36 print(f"Ping:没有从 {target_ip} 收到回应") 37 else: 38 print(f"Ping:从 {target_ip} 收到回应") # 设备开机也执行不到此行?????? 39 ret = True 40 # print(f"收到来自 {reply[IP].src} 的回应,序列号 {reply[ICMP].seq}") 41 else: 42 print(f"Ping:没有回应: {target_ip}") 43 44 return ret 45 46 def run(self): 47 print(f"ping {self.ipStr} start...") 48 while self._stop_event: 49 time.sleep(6) 50 ret_val = pingOneAddress.icmp_ping(self.ipStr) 51 52 def stop(self): 53 print("ping end.") 54 self.running = False # 设置标志位为 False 来停止 55 self._stop_event.set() 56 self.join()
这是运行的 Log:
ping 172.20.3.34 start... running count No.1 running count No.2 running count No.3 running count No.4 running count No.5 running count No.6 IP / ICMP 172.20.3.2 > 172.20.3.34 echo-request 0 / Raw running count No.7 running count No.8 WARNING: MAC address to reach destination not found. Using broadcast. running count No.9 running count No.10 running count No.11 Ping:没有回应: 172.20.3.34
情况说明:
命令行执行 ping 是功能的,说明网络没有问题。
arp -a 返回中也有这样的行:172.20.3.34 aa-bb-cc-dd-ee-21 静态