Skip to main content

海淀某校物理博士生以免费授课方式支付嫖资

    近日,北京市公安局海淀分局民警在对一居民小区出租屋进行例行检查时,接到群
众举报,查获一隐藏在居民区出租屋中的卖淫窝点,当场抓获正在进行非法性交易的嫖
客李某和失足妇女数人。
 
    在审讯过程中,令民警吃惊的是,李某竟然是海淀区某高校物理系的博士研究生,
据李某交代,他是这个卖淫窝点的常客,平时由于学校学业压力不大,李某喜欢和同学
在学校附近的小饭馆里喝茶打牌消遣,一次酒后经人介绍,来到该卖淫窝点进行嫖娼。
未料事后李某发现自己未带够现金,无法当场支付600元嫖资。
 
    经李某不断哀求,与李某进行皮肉交易的失足妇女俞某恰好正在某校就读成人教育
专业,在得知李某的博士身份后,便同意李某以免费授课方式支付嫖资。之后李某以授
课为借口,多次窜到该卖淫窝点,与俞某进行非法皮肉交易,直到被民警查获。
 
    据悉,李某因嫖娼,被海淀区公安分局处以罚金并处行政拘留15日,俞某及其他失
足妇女经公安机关严肃教育后,已被北京市劳教委处以劳教三至六个月不等的处罚。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...