Python3,2024年最新字节跳动网络安全三面凉凉

先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7

深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新网络安全全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上网络安全知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以添加V获取:vip204888 (备注网络安全)
img

正文

    elif seat_type == '一等座':
        seat_type_index = 2
        seat_type_value = 'M'
    elif seat_type == '二等座':
        seat_type_index = 3
        seat_type_value = 0
    elif seat_type == '高级软卧':
        seat_type_index = 4
        seat_type_value = 6
    elif seat_type == '软卧':
        seat_type_index = 5
        seat_type_value = 4
    elif seat_type == '动卧':
        seat_type_index = 6
        seat_type_value = 'F'
    elif seat_type == '硬卧':
        seat_type_index = 7
        seat_type_value = 3
    elif seat_type == '软座':
        seat_type_index = 8
        seat_type_value = 2
    elif seat_type == '硬座':
        seat_type_index = 9
        seat_type_value = 1
    elif seat_type == '无座':
        seat_type_index = 10
        seat_type_value = 1
    elif seat_type == '其他':
        seat_type_index = 11
        seat_type_value = 1
    else:
        seat_type_index = 7
        seat_type_value = 3
    self.seat_type_index = seat_type_index
    self.seat_type_value = seat_type_value
    # 通知信息
    self.receiver_mobile = receiver_mobile
    self.receiver_email = receiver_email
    # 主要页面网址
    self.login_url = 'https://kyfw.12306.cn/otn/login/init'
    self.init_my_url = 'https://kyfw.12306.cn/otn/index/initMy12306'
    self.ticket_url = 'https://kyfw.12306.cn/otn/leftTicket/init'
    # 浏览器驱动信息,驱动下载页:https://sites.google.com/a/chromium.org/chromedriver/downloads
    self.driver_name = 'chrome'
    self.executable_path = 'C:\\Users\cuizy\AppData\Local\Programs\Python\Python36\Scripts\chromedriver.exe'

def do_login(self):
    """登录功能实现,手动识别验证码进行登录"""
    self.driver.visit(self.login_url)
    sleep(1)
    self.driver.fill('loginUserDTO.user_name', self.user_name)
    self.driver.fill('userDTO.password', self.password)
    print('请输入验证码……')
    while True:
        if self.driver.url != self.init_my_url:
            sleep(1)
        else:
            break

def start_brush(self):
    """买票功能实现"""
    self.driver = Browser(driver_name=self.driver_name, executable_path=self.executable_path)
    # 浏览器窗口的大小
    self.driver.driver.set_window_size(900, 700)
    self.do_login()
    self.driver.visit(self.ticket_url)
    try:
        print('开始刷票……')
        # 加载车票查询信息
        self.driver.cookies.add({"_jc_save_fromStation": self.from_station})
        self.driver.cookies.add({"_jc_save_toStation": self.to_station})
        self.driver.cookies.add({"_jc_save_fromDate": self.from_time})
        self.driver.reload()
        count = 0
        while self.driver.url.split('?')[0] == self.ticket_url:
            self.driver.find_by_text('查询').click()
            sleep(1)
            count += 1
            print('第%d次点击查询……' % count)
            try:
                car_no_location = self.driver.find_by_id("queryLeftTable")[0].find_by_text(self.number)[1]
                current_tr = car_no_location.find_by_xpath("./../../../../..")
                if current_tr.find_by_tag('td')[self.seat_type_index].text == '--':
                    print('无此座位类型出售,已结束当前刷票,请重新开启!')
                    sys.exit(1)
                elif current_tr.find_by_tag('td')[self.seat_type_index].text == '无':
                    print('无票,继续尝试……')
                else:
                    # 有票,尝试预订
                    print('刷到票了(余票数:' + str(current_tr.find_by_tag('td')[self.seat_type_index].text) + '),开始尝试预订……')
                    current_tr.find_by_css('td.no-br>a')[0].click()
                    sleep(1)
                    key_value = 1
                    for p in self.passengers:
                        # 选择用户
                        print('开始选择用户……')
                        self.driver.find_by_text(p).last.click()
                        # 选择座位类型
                        print('开始选择席别……')
                        if self.seat_type_value != 0:
                            seat_select = self.driver.find_by_id("seatType_" + str(key_value))[0]
                            seat_select.find_by_xpath("//option[@value='" + str(self.seat_type_value) + "']")[0].click()
                        key_value += 1
                        sleep(0.5)
                        if p[-1] == ')':
                            self.driver.find_by_id('dialog_xsertcj_ok').click()
                    print('正在提交订单……')
                    self.driver.find_by_id('submitOrder_id').click()
                    sleep(2)
                    # 查看放回结果是否正常
                    submit_false_info = self.driver.find_by_id('orderResultInfo_id')[0].text
                    if submit_false_info != '':
                        print(submit_false_info)
                        self.driver.find_by_id('qr_closeTranforDialog_id').click()
                        sleep(0.2)
                        self.driver.find_by_id('preStep_id').click()
                        sleep(0.3)
                        continue
                    print('正在确认订单……')
                    self.driver.find_by_id('qr_submit_id').click()
                    print('预订成功,请及时前往支付……')
                    # 发送通知信息
                    self.send_mail(self.receiver_email, '恭喜您,抢到票了,请及时前往12306支付订单!')
                    self.send_sms(self.receiver_mobile, '您的验证码是:8888。请不要把验证码泄露给其他人。')
            except Exception as error_info:
                print(error_info)
    except Exception as error_info:
        print(error_info)

def send_sms(self, mobile, sms_info):
    """发送手机通知短信,用的是-互亿无线-的测试短信"""
    host = "106.ihuyi.com"
    sms_send_uri = "/webservice/sms.php?method=Submit"
    account = "C59782899"
    pass_word = "19d4d9c0796532c7328e8b82e2812655"
    params = parse.urlencode(
        {'account': account, 'password': pass_word, 'content': sms_info, 'mobile': mobile, 'format': 'json'}
    )
    headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
    conn = httplib2.HTTPConnectionWithTimeout(host, port=80, timeout=30)
    conn.request("POST", sms_send_uri, params, headers)
    response = conn.getresponse()
    response_str = response.read()
    conn.close()
    return response_str

def send_mail(self, receiver_address, content):
    """发送邮件通知"""
    # 连接邮箱服务器信息
    host = 'smtp.163.com'
    port = 25
    sender = '******@163.com'  # 你的发件邮箱号码
  '  # 不是登陆密码,是客户端授权密码
    # 发件信息
    receiver = receiver_address
    body = '<h2>温馨提醒:</h2><p>' + content + '</p>'
    msg = MIMEText(body, 'html', _charset="utf-8")
    msg['subject'] = '抢票成功通知!'
    msg['from'] = sender
    msg['to'] = receiver
    s = smtplib.SMTP(host, port)
    # 开始登陆邮箱,并发送邮件
    s.login(sender, pwd)
    s.sendmail(sender, receiver, msg.as_string())

if name == ‘main’:
# 12306用户名
user_name = input(‘请输入12306用户名:’)
while user_name == ‘’:
user_name = input(‘12306用户名不能为空,请重新输入:’)
# 12306登陆密码
password = input(‘请输入12306登陆密码:’)
while password == ‘’:
password = input(‘12306登陆密码不能为空,请重新输入:’)
# 乘客姓名
passengers_input = input(‘请输入乘车人姓名,多人用英文逗号“,”连接,(例如单人“张三”或者多人“张三,李四”):’)
passengers = passengers_input.split(“,”)
while passengers_input == ‘’ or len(passengers) > 4:
print(‘乘车人最少1位,最多4位!’)
passengers_input = input(‘请重新输入乘车人姓名,多人用英文逗号“,”连接,(例如单人“张三”或者多人“张三,李四”):’)
passengers = passengers_input.split(“,”)
# 乘车日期
from_time = input(‘请输入乘车日期(例如“2018-08-08”):’)
date_pattern = re.compile(r’^\d{4}-\d{2}-\d{2}KaTeX parse error: Expected 'EOF', got '#' at position 134: …确,请重新输入:') #̲ 城市cookie字典 …')
while receiver_mobile == ‘’ or re.findall(mobile_pattern, receiver_mobile) == []:
receiver_mobile = input(‘预留手机号码不能为空或者格式不正确,请重新输入:’)
receiver_email = input(‘请预留一个邮箱,方便抢到票后进行通知(例如:test@163.com):’)

写在最后

在结束之际,我想重申的是,学习并非如攀登险峻高峰,而是如滴水穿石般的持久累积。尤其当我们步入工作岗位之后,持之以恒的学习变得愈发不易,如同在茫茫大海中独自划舟,稍有松懈便可能被巨浪吞噬。然而,对于我们程序员而言,学习是生存之本,是我们在激烈市场竞争中立于不败之地的关键。一旦停止学习,我们便如同逆水行舟,不进则退,终将被时代的洪流所淘汰。因此,不断汲取新知识,不仅是对自己的提升,更是对自己的一份珍贵投资。让我们不断磨砺自己,与时代共同进步,书写属于我们的辉煌篇章。

需要完整版PDF学习资源私我

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注网络安全)
img

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注网络安全)
[外链图片转存中…(img-Um8V2EJI-1713363911161)]

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

  • 14
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值