Skip to main content

车祸后被拖车公司敲诈了1600多刀,可以告他们吗?


我去年年底出了个大车祸,人在医院躺了一个月,车total了。

出事时我老公不在美国,等他办完签证回来美国的时候我已经住院一个多礼拜了。然后
他接到了拖车公司的bill,说我的车陂拖走了,要交200多和每天35的存车费一共500多
。当时我老公忙着在医院照顾我,没空去取车,就打了个电话给拖车公司,跟他们说了
我们的情况,问能不能只收拖车费,免掉存车费,对方态度很差,说一毛钱都不能减。
因为我的车在车祸时起火了,警察的报告是说total了,所以我们就不打算再去取那车
了。

结果等我出院之后,拖车公司给我寄了封信,说bill已经涨到1600多刀了,再不去取车
就要告我们,会吊销我老公的驾照!!我当时虽然已经出院了,但是伤口还没close,
人也不能自理,我老公每天要给我换药照顾我,还要开车带我去看医生复查,如果没有
驾照会很麻烦,我老公就想赶紧解决掉这事,不想再让拖车公司纠缠我们。我出事的地
方离家差不多100迈,我老公来回开了几小时去交了1600多刀,那车就在当地处理掉了!

现在我的伤恢复得也差不多了,突然想起这事,觉得这个拖车公司很过分。我出事后人
躺在医院昏迷了三天,出事时我老公也不在美国,拖车公司收拖车费也就罢了,每天收
这么多存车费也太乘火打劫了!

不知道版上有人知道这种情况能告他们么?是要自己申请small claim court还是要找
律师?我完全没有头绪,如果谁能提供一些建议,非常感谢!

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 /opt/course/1/context_default_no_kubectl.sh , but without the use of k

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 checking a shared sec